slight adjustments
This commit is contained in:
parent
1de649d441
commit
3696b71d7a
@ -693,7 +693,7 @@ class ResetScoreOption extends Option
|
|||||||
Highscore.songCombos[key] = '';
|
Highscore.songCombos[key] = '';
|
||||||
}
|
}
|
||||||
confirm = false;
|
confirm = false;
|
||||||
trace('Save Data Wiped');
|
trace('Highscores Wiped');
|
||||||
display = updateDisplay();
|
display = updateDisplay();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -721,33 +721,32 @@ class ResetSettings extends Option
|
|||||||
display = updateDisplay();
|
display = updateDisplay();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
FlxG.save.data.weekUnlocked = 7;
|
FlxG.save.data.weekUnlocked = null;
|
||||||
FlxG.save.data.newInput = true;
|
FlxG.save.data.newInput = null;
|
||||||
FlxG.save.data.downscroll = false;
|
FlxG.save.data.downscroll = null;
|
||||||
FlxG.save.data.dfjk = false;
|
FlxG.save.data.dfjk = null;
|
||||||
FlxG.save.data.accuracyDisplay = true;
|
FlxG.save.data.accuracyDisplay = null;
|
||||||
FlxG.save.data.offset = 0;
|
FlxG.save.data.offset = null;
|
||||||
FlxG.save.data.songPosition = false;
|
FlxG.save.data.songPosition = null;
|
||||||
FlxG.save.data.fps = false;
|
FlxG.save.data.fps = null;
|
||||||
FlxG.save.data.changedHitX = -1;
|
FlxG.save.data.changedHit = null;
|
||||||
FlxG.save.data.changedHitY = -1;
|
FlxG.save.data.fpsRain = null;
|
||||||
FlxG.save.data.changedHit = false;
|
FlxG.save.data.fpsCap = null;
|
||||||
FlxG.save.data.fpsRain = false;
|
FlxG.save.data.scrollSpeed = null;
|
||||||
FlxG.save.data.fpsCap = 120;
|
FlxG.save.data.npsDisplay = null;
|
||||||
FlxG.save.data.scrollSpeed = 1;
|
FlxG.save.data.frames = null;
|
||||||
FlxG.save.data.npsDisplay = false;
|
FlxG.save.data.accuracyMod = null;
|
||||||
FlxG.save.data.frames = 10;
|
FlxG.save.data.watermark = null;
|
||||||
FlxG.save.data.accuracyMod = 1;
|
FlxG.save.data.ghost = null;
|
||||||
FlxG.save.data.watermark = true;
|
FlxG.save.data.distractions = null;
|
||||||
FlxG.save.data.ghost = true;
|
FlxG.save.data.flashing = null;
|
||||||
FlxG.save.data.distractions = true;
|
FlxG.save.data.resetButton = null;
|
||||||
FlxG.save.data.flashing = true;
|
FlxG.save.data.botplay = null;
|
||||||
FlxG.save.data.resetButton = false;
|
FlxG.save.data.cpuStrums = null;
|
||||||
FlxG.save.data.botplay = false;
|
FlxG.save.data.strumline = null;
|
||||||
FlxG.save.data.cpuStrums = false;
|
FlxG.save.data.customStrumLine = null;
|
||||||
FlxG.save.data.strumline = false;
|
FlxG.save.data.camzoom = null;
|
||||||
FlxG.save.data.customStrumLine = 0;
|
KadeEngineData.initSave();
|
||||||
FlxG.save.data.camzoom = true;
|
|
||||||
confirm = false;
|
confirm = false;
|
||||||
trace('All settings have been reset');
|
trace('All settings have been reset');
|
||||||
display = updateDisplay();
|
display = updateDisplay();
|
||||||
|
@ -60,7 +60,7 @@ class OptionsMenu extends MusicBeatState
|
|||||||
new BotPlay("Showcase your charts and mods with autoplay.")
|
new BotPlay("Showcase your charts and mods with autoplay.")
|
||||||
]),
|
]),
|
||||||
|
|
||||||
new OptionCategory("Saved Data", [
|
new OptionCategory("Manage Save Data", [
|
||||||
new ResetScoreOption("Reset your score on all songs and weeks."),
|
new ResetScoreOption("Reset your score on all songs and weeks."),
|
||||||
new LockWeeksOption("Reset your storymode progress. (only Tutorial + Week 1 will be unlocked)"),
|
new LockWeeksOption("Reset your storymode progress. (only Tutorial + Week 1 will be unlocked)"),
|
||||||
new ResetSettings("Reset ALL your settings.")
|
new ResetSettings("Reset ALL your settings.")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user