Pārlūkot izejas kodu

:wrench: Enable the handbrake by default

Initialize the jeep with handbrake set.
DricomDragon 1 gadu atpakaļ
vecāks
revīzija
846cfe5f84
1 mainītis faili ar 4 papildinājumiem un 0 dzēšanām
  1. 4 0
      godot/component/entity/vehicles/jeep/jeep.gd

+ 4 - 0
godot/component/entity/vehicles/jeep/jeep.gd

@@ -6,6 +6,10 @@ extends SeatedVehicle
 @export var max_steering: float = PI / 6.0 # degrees
 
 
+func _ready() -> void:
+	hand_brake(true)
+
+
 func steer(ratio: float) -> void:
 	set_steering(ratio * max_steering)