Browse Source

:wrench: Automatically set handbrake when getting out

And disable it when start driving.
DricomDragon 1 year ago
parent
commit
29a5d8413f
1 changed files with 18 additions and 4 deletions
  1. 18 4
      godot/component/entity/vehicles/jeep/jeep.gd

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

@@ -10,10 +10,27 @@ func steer(ratio: float) -> void:
 	set_steering(ratio * max_steering)
 
 
+func hand_brake(enabled: bool) -> void:
+	if enabled:
+		set_brake(max_brake_force)
+	else:
+		set_brake(0.0)
+
+
 func get_free_seat() -> Node3D:
 	return %RearSeat
 
 
+func drive_with(commander: LocalInput) -> void:
+	hand_brake(false)
+	super.drive_with(commander)
+
+
+func get_out() -> void:
+	hand_brake(true)
+	super.get_out()
+
+
 func _on_dir_changed(dir: Vector2) -> void:
 	steer(-dir.x)
 
@@ -26,10 +43,7 @@ func _on_main_action(pressed: bool) -> void:
 
 
 func _on_stop_action(pressed: bool) -> void:
-	if pressed:
-		set_brake(max_brake_force)
-	else:
-		set_brake(0.0)
+	hand_brake(pressed)
 
 
 func _on_analog_action(side: int, value: float) -> void: