This commit is contained in:
2026-05-14 19:11:10 +02:00
parent 2d4002bd3f
commit 52ad83a96d
15 changed files with 169 additions and 31 deletions

View File

@@ -29,6 +29,9 @@ func reset_run() -> void:
func change_scene(path: String) -> void:
current_scene = path
EventBus.scene_change_requested.emit(path)
call_deferred("_do_change_scene", path)
func _do_change_scene(path: String) -> void:
get_tree().change_scene_to_file(path)
func set_paused(value: bool) -> void: