浏览代码

:wrench: Slightly reduce lift

Take-off is facilitated by wheels, slightly incling the plane to the
air.
DricomDragon 4 天之前
父节点
当前提交
7bc804a344
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      godot/component/entity/vehicles/biplan/biplan.gd

+ 1 - 1
godot/component/entity/vehicles/biplan/biplan.gd

@@ -8,7 +8,7 @@ const PLANE_FORWARD := Vector3.BACK # z increases when moving forward
 @export var move_to_pitch: float = 2000.0
 @export var wing_resistance: float = 2500.0
 @export var foil_resistance: float = 250.0
-@export var lift: float = 50.0
+@export var lift: float = 25.0
 
 var target_torque: float = 0.0
 var target_pitch: float = 0.0