lang split into two files

This commit is contained in:
minjaesong
2023-06-30 16:20:57 +09:00
parent 7c1806946b
commit 5d0514040c
6 changed files with 36 additions and 27 deletions

View File

@@ -12,6 +12,7 @@ object DefaultConfig {
val hashMap = hashMapOf<String, Any>(
"jvm_xmx" to 4,
"jvm_extra_cmd" to "",
"displayfps" to 0, // 0: no limit, non-zero: limit
"displayfpsidle" to 0, // 0: no limit, non-zero: limit
"displaycolourdepth" to 8,

View File

@@ -165,7 +165,7 @@ class TitleScreen(batch: FlippingSpriteBatch) : IngameInstance(batch) {
//ReadWorld.readWorldAndSetNewWorld(Terrarum.ingame!! as TerrarumIngame, reader)
val world = ReadSimpleWorld(reader, file)
demoWorld = world
demoWorld.worldTime.timeDelta = 440 // a year = 6 minutes
demoWorld.worldTime.timeDelta = 330 // a year = 8 minutes
printdbg(this, "Demo world loaded")
}
catch (e: IOException) {