|
@@ -143,6 +143,16 @@ func _get_in_vehicle(commander: LocalInput) -> void:
|
|
|
## Get out of the current vehicle
|
|
|
func _get_out_vehicle() -> void:
|
|
|
_vehicle.get_out()
|
|
|
+ _start_getting_out()
|
|
|
+
|
|
|
+
|
|
|
+func _start_getting_out() -> void:
|
|
|
+ var tween = create_tween()
|
|
|
+ tween.tween_property(self, "transform", _vehicle.get_door().get_transform(), board_seat_access_duration)
|
|
|
+ tween.tween_callback(_finish_getting_out)
|
|
|
+
|
|
|
+
|
|
|
+func _finish_getting_out() -> void:
|
|
|
remove_collision_exception_with(_vehicle)
|
|
|
reparent(_vehicle.get_parent())
|
|
|
_vehicle = null
|