1
0
mirror of https://github.com/Melon-Bread/Pet.GB synced 2024-11-24 20:58:19 -05:00

Fixed Debug Layout 🐛

This commit is contained in:
Rain Clark 2016-10-07 00:16:45 -04:00
parent b96dc0099b
commit d3bb4acd18

View File

@ -13,8 +13,6 @@ class PlayState extends FlxState
private var _hud:HUD; private var _hud:HUD;
// DEBUG
FlxG.debugger.setLayout(FlxDebuggerLayout.RIGHT);
override public function create():Void override public function create():Void
{ {
@ -30,6 +28,9 @@ class PlayState extends FlxState
add(_hud); add(_hud);
super.create(); super.create();
// DEBUG
FlxG.debugger.setLayout(FlxDebuggerLayout.RIGHT);
} }
override public function update(elapsed:Float):Void override public function update(elapsed:Float):Void