mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-04 13:54:22 +00:00
30 lines
579 B
Haxe
30 lines
579 B
Haxe
package;
|
|
|
|
import flixel.FlxG;
|
|
import flixel.FlxSprite;
|
|
import flixel.util.FlxColor;
|
|
|
|
class OptionsMenu extends MusicBeatState
|
|
{
|
|
override function create()
|
|
{
|
|
var menuBG:FlxSprite = new FlxSprite().loadGraphic(AssetPaths.menuDesat__png);
|
|
menuBG.color = 0xFFea71fd;
|
|
menuBG.setGraphicSize(Std.int(menuBG.width * 1.1));
|
|
menuBG.updateHitbox();
|
|
menuBG.screenCenter();
|
|
menuBG.antialiasing = true;
|
|
add(menuBG);
|
|
|
|
super.create();
|
|
}
|
|
|
|
override function update(elapsed:Float)
|
|
{
|
|
if (controls.BACK)
|
|
FlxG.switchState(new MainMenuState());
|
|
|
|
super.update(elapsed);
|
|
}
|
|
}
|