فهرست منبع

:beetle: Release reference of commander once disconnected

DricomDragon 1 سال پیش
والد
کامیت
c1fda15600
2فایلهای تغییر یافته به همراه2 افزوده شده و 0 حذف شده
  1. 1 0
      first3d/component/entity/vehicles/jeep/jeep.gd
  2. 1 0
      first3d/component/entity/vehicles/plane/tiny_plane.gd

+ 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: