Skip to content

Commit

Permalink
Remove unnecessary debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
srikavin committed Feb 11, 2020
1 parent 1aaf739 commit ad91702
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 1 addition & 3 deletions core/src/me/srikavin/fbla/game/FBLAGame.kt
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class FBLAGame : ApplicationAdapter() {
DialogueSystem(),
TriggerSystem(listenerManager),
UISystem(),
PhysicsDebugSystem(physicsWorld, debug = true)
PhysicsDebugSystem(physicsWorld, debug = false)
)
.with(TagManager())
.build()
Expand Down Expand Up @@ -198,8 +198,6 @@ class FBLAGame : ApplicationAdapter() {
}
mainMenuUI.build()
scene = TITLE
startGame()
scene = PLAYING
}

override fun render() {
Expand Down
1 change: 0 additions & 1 deletion core/src/me/srikavin/fbla/game/ui/GameHudUI.kt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ class GameHudUI(private val skin: Skin, private val gameState: GameState) : Game

init {
registerInputHandler(stage)
stage.isDebugAll = true
}

fun build() {
Expand Down

0 comments on commit ad91702

Please sign in to comment.