mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-10-31 20:04:32 +00:00
27 lines
462 B
Haxe
27 lines
462 B
Haxe
|
package;
|
||
|
|
||
|
import flixel.FlxG;
|
||
|
import flixel.FlxSprite;
|
||
|
import flixel.FlxSubState;
|
||
|
import flixel.util.FlxColor;
|
||
|
|
||
|
class PauseSubState extends FlxSubState
|
||
|
{
|
||
|
public function new()
|
||
|
{
|
||
|
super();
|
||
|
var bg:FlxSprite = new FlxSprite().makeGraphic(FlxG.width, FlxG.height, FlxColor.BLACK);
|
||
|
bg.alpha = 0.6;
|
||
|
bg.scrollFactor.set();
|
||
|
add(bg);
|
||
|
}
|
||
|
|
||
|
override function update(elapsed:Float)
|
||
|
{
|
||
|
super.update(elapsed);
|
||
|
|
||
|
if (FlxG.keys.justPressed.ENTER)
|
||
|
close();
|
||
|
}
|
||
|
}
|