water jumping works but needs onscreen instruction to educate players

This commit is contained in:
minjaesong
2024-09-06 21:14:54 +09:00
parent bd8f455ce6
commit 1af82e4d5c
2 changed files with 9 additions and 7 deletions

View File

@@ -168,11 +168,10 @@ open class TerrarumIngame(batch: FlippingSpriteBatch) : IngameInstance(batch) {
// x: neither
(this.hitbox.endX >= WorldCamera.x && this.hitbox.startX <= WorldCamera.xEnd))
// Vchunks = (10 * Hchunks)^0.6, rounded towards nearest even number
val SIZE_SMALL = Point2i(CHUNK_W*67, CHUNK_H*50)
val SIZE_SMALL = Point2i(CHUNK_W*66, CHUNK_H*60)
val SIZE_NORMAL = Point2i(CHUNK_W*100, CHUNK_H*64)
val SIZE_LARGE = Point2i(CHUNK_W*150, CHUNK_H*80)
val SIZE_HUGE = Point2i(CHUNK_W*250, CHUNK_H*110) // world ratio: 4:3
val SIZE_LARGE = Point2i(CHUNK_W*150, CHUNK_H*66)
val SIZE_HUGE = Point2i(CHUNK_W*250, CHUNK_H*70)
val NEW_WORLD_SIZE = arrayOf(SIZE_SMALL, SIZE_NORMAL, SIZE_LARGE, SIZE_HUGE)
val WORLDPORTAL_NEW_WORLD_SIZE = arrayOf(SIZE_SMALL, SIZE_NORMAL, SIZE_LARGE, SIZE_HUGE)