- Edited
- Best Answerset by Frodev
Frodev Is this even possible?
What kind of question is that? Of course it is! Games have ALWAYS saved data in files. Godot has a special folder just for user data, the location depends on OS (platform). this folder can be accessed with user://
, as oposed to res://
which contains compressed game data.
https://docs.godotengine.org/en/stable/tutorials/io/data_paths.html
You should read the docs.
Here's the oficial documentation on saving games. This can be applied to any form of data, it doesn't have to be always nodes, you can save just the player data and update it on only the player and certain objects when the game starts, like in diablo.
https://docs.godotengine.org/en/stable/tutorials/io/saving_games.html