diff --git a/gradle.properties b/gradle.properties index a6cfaaa..85d2812 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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 diff --git a/sample-10000sprites/src/commonMain/kotlin/Main.kt b/sample-10000sprites/src/commonMain/kotlin/Main.kt index 23cfd44..c0fd0d0 100644 --- a/sample-10000sprites/src/commonMain/kotlin/Main.kt +++ b/sample-10000sprites/src/commonMain/kotlin/Main.kt @@ -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) diff --git a/sample-10000sprites/src/commonMain/resources/character2.png b/sample-10000sprites/src/commonMain/resources/character2.png new file mode 100644 index 0000000..fb3d228 Binary files /dev/null and b/sample-10000sprites/src/commonMain/resources/character2.png differ diff --git a/sample-spriteAnimation/src/commonMain/kotlin/Main.kt b/sample-spriteAnimation/src/commonMain/kotlin/Main.kt index f200c67..a8bd8bc 100644 --- a/sample-spriteAnimation/src/commonMain/kotlin/Main.kt +++ b/sample-spriteAnimation/src/commonMain/kotlin/Main.kt @@ -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,