Saving only one value in preferences file - libgdx

150 Views Asked by At

I would like to save the player's best score in the game's preferences file. Now, I know I need to call the flush() method in order for the values to get persisted, but I have other values( options) such as "music on/off" and "sound on/off" which I don't want to get saved at all.

So my question is - how can I save only the best score value without saving the other ones?

1

There are 1 best solutions below

2
On

this a simple test ..//

float score = "your score player actual";

float bestScore = YourPreferences.getFloat("BestScore", -1);

if(bestScore < score){

 YourPreferences.putFloat("BestScore", score).flush();

}