dababy: less gooo
This commit is contained in:
parent
8340c45a95
commit
7f64d2b2f7
@ -57,8 +57,13 @@ class KadeEngineData
|
||||
if (FlxG.save.data.accuracyMod == null)
|
||||
FlxG.save.data.accuracyMod = 1;
|
||||
|
||||
if (FlxG.save.data.watermark == null)
|
||||
FlxG.save.data.watermark = true;
|
||||
|
||||
Conductor.recalculateTimings();
|
||||
|
||||
Main.watermarks = FlxG.save.data.watermark;
|
||||
|
||||
(cast (Lib.current.getChildAt(0), Main)).setFPSCap(FlxG.save.data.fpsCap);
|
||||
}
|
||||
}
|
||||
|
@ -449,8 +449,9 @@ class WatermarkOption extends Option
|
||||
public override function press():Bool
|
||||
{
|
||||
Main.watermarks = !Main.watermarks;
|
||||
FlxG.save.data.watermark = Main.watermarks;
|
||||
display = updateDisplay();
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
private override function updateDisplay():String
|
||||
|
@ -40,13 +40,16 @@ class OptionsMenu extends MusicBeatState
|
||||
new AccuracyOption("Display accuracy information."),
|
||||
new NPSDisplayOption("Shows your current Notes Per Second.")
|
||||
]),
|
||||
#if desktop
|
||||
new OptionCatagory("Misc", [
|
||||
|
||||
new OptionCatagory("Misc", [
|
||||
#if desktop
|
||||
new FPSOption("Toggle the FPS Counter"),
|
||||
new ReplayOption("View replays")
|
||||
])
|
||||
new ReplayOption("View replays"),
|
||||
#end
|
||||
new WatermarkOption("Turn off all watermarks from the engine.")
|
||||
|
||||
])
|
||||
|
||||
];
|
||||
|
||||
private var currentDescription:String = "";
|
||||
|
Loading…
x
Reference in New Issue
Block a user