Upgrade Godot Version & Work Towards Level Gen

This commit is contained in:
2023-12-10 00:22:06 +01:00
parent 0fa604298f
commit 51beabf526
866 changed files with 265 additions and 1302 deletions

View File

@ -7,3 +7,10 @@ func generate(map: TileMap) -> void:
return
self.call("_generate", map)
func get_progress_tracker() -> ProgressTracker:
if not self.has_method("_get_progress_tracker"):
push_error("Generator missing `_get_progress_tracker` method")
return null
return self.call("_get_progress_tracker")