fixed camera controls

This commit is contained in:
Luca 2024-11-17 13:06:55 +01:00
parent cd62e12389
commit d6a0911801
78 changed files with 4044 additions and 81 deletions

View file

@ -65,5 +65,8 @@ func load_game() -> void:
if restored_node.has_method("on_load_game"):
restored_node.on_load_game(node)
# This checks if there is a savegame file in the users folder.
# We use FileAccess here to ensure that also works on Android.
# TODO: Research again, why this is needed
func save_exists() -> bool:
return FileAccess.file_exists("user://savegame.tres")