jumper_input.gd 962 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. class_name JumperInput
  2. extends MultiplayerSynchronizer
  3. const STICK_DEADZONE: float = 0.5
  4. # Set via RPC to simulate is_action_just_pressed.
  5. @export var jumping: bool = false
  6. # Synchronized property.
  7. @export var direction := Vector2()
  8. func _ready():
  9. # Only process for the local player
  10. set_process(get_multiplayer_authority() == multiplayer.get_unique_id())
  11. @rpc("call_local")
  12. func jump() -> void:
  13. jumping = true
  14. func _process(delta: float) -> void:
  15. # Get the input direction and handle the movement/deceleration.
  16. direction = _new_direction()
  17. if Input.is_action_just_pressed("jump"):
  18. jump.rpc()
  19. func _new_direction() -> Vector2:
  20. var new_dir := Vector2(Input.get_joy_axis(0, JOY_AXIS_LEFT_X), 0.0)
  21. if absf(new_dir.x) < STICK_DEADZONE:
  22. new_dir.x = 0.0
  23. new_dir.x += Input.get_axis("move_left", "move_right")
  24. print(Input.get_axis("move_left", "move_right"))
  25. if new_dir == Vector2.ZERO:
  26. return Vector2.ZERO
  27. return new_dir.normalized()