Skip to content

Commit

Permalink
Update gradle build versions, new background images
Browse files Browse the repository at this point in the history
  • Loading branch information
Bombbird2001 committed Jun 1, 2024
1 parent 136f03d commit 91e7de7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ configure(subprojects - project(':android')) {
subprojects {
version = '2.2.0-beta'
ext.appName = 'Terminal Control 2'
ext.buildVersion = 30
ext.buildVersion = 31
repositories {
mavenCentral()
maven { url 'https://s01.oss.sonatype.org' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class TerminalControl2(val externalFileHandler: ExternalFileHandler, ttsHandler:
assetStorage.apply {
// Loading assets, the coroutine will suspend until each asset is loaded
Scene2DSkin.defaultSkin = load("Skin/skin.json")
for (i in 1..8) load<Texture>("Images/$i.png")
for (i in 1..9) load<Texture>("Images/$i.png")
load<Texture>("Images/MainMenuIcon.png")

// Loading audio files
Expand Down Expand Up @@ -167,7 +167,7 @@ class TerminalControl2(val externalFileHandler: ExternalFileHandler, ttsHandler:
discordHandler.initialize()
}

BG_INDEX = MathUtils.random(1, 8)
BG_INDEX = MathUtils.random(1, 9)
}

/** Overrides [KtxGame.dispose] to also dispose of [batch], [assetStorage] and [soundManager] */
Expand Down

0 comments on commit 91e7de7

Please sign in to comment.