Browse Source

:tada: Get to the door before exiting

Prevent absurd vehicle jettison when getting out and reactivating the
collision with walker.
DricomDragon 2 months ago
parent
commit
650c634a44
1 changed files with 10 additions and 0 deletions
  1. 10 0
      godot/component/entity/walker/walker.gd

+ 10 - 0
godot/component/entity/walker/walker.gd

@@ -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