poggin
This commit is contained in:
parent
24f90be635
commit
c364d65406
@ -25,7 +25,7 @@ class OptionsMenu extends MusicBeatState
|
||||
override function create()
|
||||
{
|
||||
var menuBG:FlxSprite = new FlxSprite().loadGraphic(Paths.image('menuDesat'));
|
||||
controlsStrings = CoolUtil.coolStringFile((FlxG.save.data.dfjk ? 'DFJK' : 'WASD') + "\n" + (FlxG.save.data.newInput ? "New input" : "Old Input") + "\n" + (FlxG.save.data.downscroll ? 'Downscroll' : 'Upscroll') + "\nAccuracy " + (FlxG.save.data.accuracyDisplay ? "off" : "on") + "\nLoad replays");
|
||||
controlsStrings = CoolUtil.coolStringFile((FlxG.save.data.dfjk ? 'DFJK' : 'WASD') + "\n" + (FlxG.save.data.newInput ? "New input" : "Old Input") + "\n" + (FlxG.save.data.downscroll ? 'Downscroll' : 'Upscroll') + "\nAccuracy " + (!FlxG.save.data.accuracyDisplay ? "off" : "on") + "\nLoad replays");
|
||||
|
||||
trace(controlsStrings);
|
||||
|
||||
@ -112,7 +112,7 @@ class OptionsMenu extends MusicBeatState
|
||||
grpControls.add(ctrl);
|
||||
case 3:
|
||||
FlxG.save.data.accuracyDisplay = !FlxG.save.data.accuracyDisplay;
|
||||
var ctrl:Alphabet = new Alphabet(0, (70 * curSelected) + 30, "Accuracy " + (FlxG.save.data.accuracyDisplay ? "off" : "on"), true, false);
|
||||
var ctrl:Alphabet = new Alphabet(0, (70 * curSelected) + 30, "Accuracy " + (!FlxG.save.data.accuracyDisplay ? "off" : "on"), true, false);
|
||||
ctrl.isMenuItem = true;
|
||||
ctrl.targetY = curSelected - 3;
|
||||
grpControls.add(ctrl);
|
||||
|
Loading…
x
Reference in New Issue
Block a user