Jelajahi Sumber

:beetle: Fix torque and force noise because of translation

Noise torque was created when the plane was distant from the origin.
DricomDragon 1 tahun lalu
induk
melakukan
ae74f6281c
1 mengubah file dengan 4 tambahan dan 2 penghapusan
  1. 4 2
      first3d/component/entity/plane/tiny_plane.gd

+ 4 - 2
first3d/component/entity/plane/tiny_plane.gd

@@ -26,8 +26,10 @@ func trigger_direction(dir: Vector2) -> void:
 
 
 func _physics_process(delta: float) -> void:
-	apply_torque(transform * Vector3(target_pitch, 0.0, target_torque))
-	apply_central_force(transform * target_thrust)
+	var torque: Vector3 = transform.basis * Vector3(target_pitch, 0.0, target_torque)
+	var force: Vector3 = transform.basis * target_thrust
+	apply_torque(torque)
+	apply_central_force(force)
 
 
 func _on_dir_changed(dir: Vector2) -> void: