Browse Source

:beetle: Release reference of commander once disconnected

DricomDragon 1 năm trước cách đây
mục cha
commit
c1fda15600

+ 1 - 0
first3d/component/entity/vehicles/jeep/jeep.gd

@@ -20,6 +20,7 @@ func drive_with(commander: LocalInput) -> void:
 func get_out() -> void:
 	_current_commander.dir_changed.disconnect(_on_dir_changed)
 	_current_commander.main_action.disconnect(_on_main_action)
+	_current_commander = null
 
 
 func get_free_seat() -> Node3D:

+ 1 - 0
first3d/component/entity/vehicles/plane/tiny_plane.gd

@@ -37,6 +37,7 @@ func drive_with(commander: LocalInput) -> void:
 func get_out() -> void:
 	_current_commander.dir_changed.disconnect(_on_dir_changed)
 	_current_commander.main_action.disconnect(_on_main_action)
+	_current_commander = null
 
 
 func _physics_process(delta: float) -> void: