浏览代码

:wrench: Apply thrust into the ship thrust direction

DricomDragon 1 年之前
父节点
当前提交
05b63a2c9c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      godot/component/ships/ship.gd

+ 1 - 1
godot/component/ships/ship.gd

@@ -11,7 +11,7 @@ var current_torque : float = 0.0
 
 
 func _physics_process(delta):
-	apply_central_force(current_force)
+	apply_central_force(current_force.rotated(rotation))
 	apply_torque(current_torque)