jumper.gd 696 B

123456789101112131415161718192021222324252627282930313233343536
  1. class_name Jumper
  2. extends RigidBody2D
  3. const SPEED = 5.0
  4. const JUMP_IMPULSE = 942.5
  5. const MOVE_FORCE = 1142
  6. # Set by the authority, synchronized on spawn.
  7. @export var player := 1 :
  8. set(id):
  9. player = id
  10. # Give authority over the player input to the appropriate peer.
  11. $JumperInput.set_multiplayer_authority(id)
  12. # Player synchronized input
  13. @onready var input: JumperInput = $JumperInput
  14. func _ready():
  15. pass
  16. func _physics_process(delta):
  17. # Handle Jump.
  18. if input.jumping:
  19. apply_impulse(Vector2.UP * JUMP_IMPULSE)
  20. # Reset jump state.
  21. input.jumping = false
  22. # Handle movement.
  23. var direction = input.direction
  24. direction.y = 0
  25. if direction:
  26. apply_force(direction * MOVE_FORCE)