Godot Version
4.0.2 stable
Question
Is it posible to save game by saving scene file and then load it? It will work if i compile project?
4.0.2 stable
Is it posible to save game by saving scene file and then load it? It will work if i compile project?
No, you need to create your save and load logic manually
Even if it worked, it would be very prone to errors, especially if you change the scene structure in the future. You’ll be better off with saving/loading a Dictionary object holding all the necessary data. That’s how we do it in our game.