caught up 10/30/

This commit is contained in:
Brandon
2020-10-30 19:47:19 -04:00
parent bf78c62384
commit e98212b1cd
68 changed files with 1498 additions and 536 deletions

View File

@@ -9,7 +9,7 @@ import flixel.util.FlxColor;
class PauseSubState extends FlxSubState
{
public function new()
public function new(x:Float, y:Float)
{
super();
var bg:FlxSprite = new FlxSprite().makeGraphic(FlxG.width, FlxG.height, FlxColor.BLACK);
@@ -17,6 +17,12 @@ class PauseSubState extends FlxSubState
bg.scrollFactor.set();
add(bg);
var bf:Boyfriend = new Boyfriend(x, y);
bf.scrollFactor.set();
// add(bf);
bf.playAnim('firstDeath');
bg.cameras = [FlxG.cameras.list[1]];
}