From d3bb4acd18e46a0a99843a135ed74b15a5d3e383 Mon Sep 17 00:00:00 2001 From: Rain Clark Date: Fri, 7 Oct 2016 00:16:45 -0400 Subject: [PATCH] Fixed Debug Layout :bug: --- source/PlayState.hx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/PlayState.hx b/source/PlayState.hx index 531856a..b1f87bd 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -13,8 +13,6 @@ class PlayState extends FlxState private var _hud:HUD; - // DEBUG - FlxG.debugger.setLayout(FlxDebuggerLayout.RIGHT); override public function create():Void { @@ -30,6 +28,9 @@ class PlayState extends FlxState add(_hud); super.create(); + + // DEBUG + FlxG.debugger.setLayout(FlxDebuggerLayout.RIGHT); } override public function update(elapsed:Float):Void