walker.gd 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. class_name Walker
  2. extends CharacterBody3D
  3. # How fast the player moves in meters per second.
  4. @export var speed = 14
  5. # Convert an axis from [-1, -1] to rad
  6. @export var turn_to_rad: float = 0.020
  7. # The downward acceleration when in the air, in meters per second squared.
  8. @export var fall_acceleration = 75
  9. # Vertical impulse applied to the character upon jumping in meters per second.
  10. @export var jump_impulse = 20
  11. var target_velocity := Vector3.ZERO
  12. var target_rotation: float = 0.0
  13. func trigger_jump() -> void:
  14. if is_on_floor():
  15. target_velocity.y = jump_impulse
  16. func trigger_direction(dir: Vector2) -> void:
  17. target_rotation = -dir.x * turn_to_rad
  18. var ground_velocity: Vector2 = Vector2.UP.rotated(global_rotation.y) * dir.y * speed
  19. target_velocity.x = ground_velocity.x
  20. target_velocity.z = -ground_velocity.y
  21. func _physics_process(delta: float) -> void:
  22. rotate_y(target_rotation)
  23. # Gravity
  24. if not is_on_floor():
  25. target_velocity.y = target_velocity.y - (fall_acceleration * delta)
  26. # Moving the Character
  27. velocity = target_velocity
  28. move_and_slide()
  29. func _on_dir_changed(dir: Vector2) -> void:
  30. trigger_direction(dir)
  31. func _on_main_action() -> void:
  32. trigger_jump()