How to do save user data

4.3

When making a mobile game, how do I ensure that user’s progress in the game is saved and continues when users turn the game off and on again?

Hi @fake

You may wanna read this first: Saving games — Godot Engine (stable) documentation in English

Saving depends on each game.

In your app, you should design when to save. For example, when the player reaches a checkpoint, save? That way, when the player reload the game, they can get back from the checkpoint.

Or if you want the player to immediately pick up where he left off on mobile, you may want to read this: Handling quit requests — Godot Engine (stable) documentation in English And from there, save the game, for example.

3 Likes