Right now, the game stores just the high scores of each gamemode in highscores.json. This is fine, but it would be nice to be able to track the player progress over time.
Inside the folder user://data/progress/ there should be a file for each gamemode played, that saves the progress in that specific gamemode. For example, a file called random.cfg stores all games played in the random gamemode.
The reason for using a .cfg file for this, is simply that the game currently uses .cfg files all over the place and for a simple thing. so it's just for the sake of consistency.
Right now, the game stores just the high scores of each gamemode in
highscores.json
. This is fine, but it would be nice to be able to track the player progress over time.Inside the folder
user://data/progress/
there should be a file for each gamemode played, that saves the progress in that specific gamemode. For example, a file calledrandom.cfg
stores all games played in the random gamemode.The reason for using a
.cfg
file for this, is simply that the game currently uses.cfg
files all over the place and for a simple thing. so it's just for the sake of consistency.