ship.gd 348 B

123456789101112131415161718192021
  1. class_name Ship
  2. extends RigidBody2D
  3. # Common base script for ships
  4. const THRUST_STRENGTH = 400_000
  5. var current_force = Vector2.ZERO
  6. func _physics_process(delta):
  7. apply_central_force(current_force)
  8. func _on_command(dir: Vector2) -> void:
  9. _thrust(dir)
  10. func _thrust(dir: Vector2) -> void:
  11. print(dir)
  12. current_force = dir * THRUST_STRENGTH