Prefs
This component allows you to store variables much easier in a data.txt file.
new Prefs()// Store a value in a key which then stored in data.txt file
storeFloat(String key, float value);
// Retrieve a float with the matching key
getFloat(String key);Last updated