imported main menu scene addon

This commit is contained in:
2026-05-10 15:48:56 +02:00
parent 86d9f75161
commit 71c2850a34
458 changed files with 14881 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
extends LevelManager
func set_current_level_path(value : String) -> void:
super.set_current_level_path(value)
GameState.set_current_level_path(value)
func set_checkpoint_level_path(value : String) -> void:
super.set_checkpoint_level_path(value)
GameState.set_checkpoint_level_path(value)
func get_checkpoint_level_path() -> String:
var state_level_path := GameState.get_checkpoint_level_path()
if not state_level_path.is_empty():
return state_level_path
return super.get_checkpoint_level_path()