Bump korge version

This commit is contained in:
soywiz
2020-05-19 22:34:18 +02:00
parent b70907660e
commit 05ff94ac0e
4 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
korgePluginVersion=1.12.4.1
korgePluginVersion=1.12.5.0
#korimVersion=1.12.11-SNAPSHOT
#korioVersion=1.11.2-SNAPSHOT
#korgwVersion=1.12.4-SNAPSHOT

View File

@@ -12,8 +12,8 @@ suspend fun main() = Korge(width = 1600, height = 1200) {
val numberOfGreen = 5000
val numberOfRed = numberOfGreen
val redSpriteMap = resourcesVfs["gfx/character/character.png"].readBitmap()
val greenSpriteMap = resourcesVfs["gfx/character/character2.png"].readBitmap()
val redSpriteMap = resourcesVfs["character.png"].readBitmap()
val greenSpriteMap = resourcesVfs["character2.png"].readBitmap()
val greenAnimations = animations(greenSpriteMap)
val redAnimations = animations(redSpriteMap)

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@@ -8,7 +8,7 @@ import com.soywiz.korim.format.*
import com.soywiz.korio.file.std.*
suspend fun main() = Korge(width = 512, height = 512) {
val spriteMap = resourcesVfs["gfx/character/character.png"].readBitmap()
val spriteMap = resourcesVfs["character.png"].readBitmap()
val spriteAnimationLeft = SpriteAnimation(
spriteMap = spriteMap,