clouds with just right depths

This commit is contained in:
minjaesong
2023-08-22 02:55:31 +09:00
parent 7dd520393c
commit da8d620766
9 changed files with 62 additions and 23 deletions

View File

@@ -269,8 +269,8 @@ public class App implements ApplicationListener {
Gdx.gl20.glViewport(0, 0, width, height);
}
public static final int TICKS = 64;
public static final float UPDATE_RATE = 1f / TICKS; // apparent framerate will be limited by update rate
public static final int TICK_SPEED = 64;
public static final float UPDATE_RATE = 1f / TICK_SPEED; // apparent framerate will be limited by update rate
private static float loadTimer = 0f;
private static final float showupTime = 100f / 1000f;