jumper_input.gd 704 B

1234567891011121314151617181920212223242526
  1. class_name JumperInput
  2. extends MultiplayerSynchronizer
  3. # Set via RPC to simulate is_action_just_pressed.
  4. @export var jumping: bool = false
  5. # Synchronized property.
  6. @export var direction := Vector2()
  7. func _ready():
  8. # Only process for the local player
  9. set_process(get_multiplayer_authority() == multiplayer.get_unique_id())
  10. @rpc("call_local")
  11. func jump() -> void:
  12. jumping = true
  13. func _process(delta: float) -> void:
  14. # Get the input direction and handle the movement/deceleration.
  15. # As good practice, you should replace UI actions with custom gameplay actions.
  16. direction = Input.get_vector("ui_left", "ui_right", "ui_up", "ui_down")
  17. if Input.is_action_just_pressed("ui_accept"):
  18. jump.rpc()