From ad917029c9b729a665a75828b7b1319ba26cd178 Mon Sep 17 00:00:00 2001 From: Srikavin Ramkumar Date: Tue, 11 Feb 2020 18:26:28 -0500 Subject: [PATCH] Remove unnecessary debug info --- core/src/me/srikavin/fbla/game/FBLAGame.kt | 4 +--- core/src/me/srikavin/fbla/game/ui/GameHudUI.kt | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) 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() {