diff --git a/core/src/me/srikavin/fbla/game/FBLAGame.kt b/core/src/me/srikavin/fbla/game/FBLAGame.kt index 0770cf6..ad12d1c 100644 --- a/core/src/me/srikavin/fbla/game/FBLAGame.kt +++ b/core/src/me/srikavin/fbla/game/FBLAGame.kt @@ -106,7 +106,7 @@ class FBLAGame : ApplicationAdapter() { DialogueSystem(), TriggerSystem(listenerManager), UISystem(), - PhysicsDebugSystem(physicsWorld, debug = true) + PhysicsDebugSystem(physicsWorld, debug = false) ) .with(TagManager()) .build() @@ -198,8 +198,6 @@ class FBLAGame : ApplicationAdapter() { } mainMenuUI.build() scene = TITLE - startGame() - scene = PLAYING } override fun render() { diff --git a/core/src/me/srikavin/fbla/game/ui/GameHudUI.kt b/core/src/me/srikavin/fbla/game/ui/GameHudUI.kt index eb89d03..daec52a 100644 --- a/core/src/me/srikavin/fbla/game/ui/GameHudUI.kt +++ b/core/src/me/srikavin/fbla/game/ui/GameHudUI.kt @@ -21,7 +21,6 @@ class GameHudUI(private val skin: Skin, private val gameState: GameState) : Game init { registerInputHandler(stage) - stage.isDebugAll = true } fun build() {