Преглед на файлове

:beetle: Fix runtime error

It's likely that's this signal can be sent when the node gets out of
tree.
DricomDragon преди 1 година
родител
ревизия
b60db1aac7
променени са 1 файла, в които са добавени 3 реда и са изтрити 1 реда
  1. 3 1
      godot/component/ui/victory/victory_menu.gd

+ 3 - 1
godot/component/ui/victory/victory_menu.gd

@@ -19,7 +19,9 @@ func _on_quit_button_pressed():
 	get_tree().quit()
 
 
-func _on_visibility_changed():
+func _on_visibility_changed() -> void:
+	if !is_inside_tree():
+		return
 	set_process_input(true)
 	%TitleButton.grab_focus()