tiny_plane.gd 1019 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. class_name TinyPlane
  2. extends RigidBody3D
  3. @export var thrust_power: float = 10000.0
  4. @export var turn_to_torque: float = 2000.0
  5. @export var move_to_pitch: float = 4000.0
  6. @export var lift: float = 10000.0
  7. var target_torque: float = 0.0
  8. var target_pitch: float = 0.0
  9. var target_rotation := Vector3.ZERO
  10. var target_thrust := Vector3.ZERO
  11. func trigger_thrust(activate: bool) -> void:
  12. if activate:
  13. target_thrust = Vector3.FORWARD * thrust_power + Vector3.UP * lift
  14. else:
  15. target_thrust = Vector3.ZERO
  16. func trigger_direction(dir: Vector2) -> void:
  17. print(dir)
  18. target_torque = -dir.x * turn_to_torque
  19. target_pitch = -dir.y * move_to_pitch
  20. func _physics_process(delta: float) -> void:
  21. var torque: Vector3 = transform.basis * Vector3(target_pitch, 0.0, target_torque)
  22. var force: Vector3 = transform.basis * target_thrust
  23. apply_torque(torque)
  24. apply_central_force(force)
  25. func _on_dir_changed(dir: Vector2) -> void:
  26. trigger_direction(dir)
  27. func _on_main_action(pressed: bool) -> void:
  28. trigger_thrust(pressed)