calendar sprite removing a spring

This commit is contained in:
minjaesong
2023-08-13 15:36:24 +09:00
parent 24c971e4b8
commit 6a43d1a5bd
3 changed files with 5 additions and 4 deletions

View File

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

View File

@@ -698,7 +698,7 @@ open class ActorWithBody : Actor {
}
private fun displaceHitbox() {
val printdbg1 = true
val printdbg1 = false && App.IS_DEVELOPMENT_BUILD
// // HOW IT SHOULD WORK // //
// ////////////////////////
// combineVeloToMoveDelta now
@@ -772,7 +772,7 @@ open class ActorWithBody : Actor {
fun debug2(wut: Any?) {
// vvvvv set it true to make debug print work
if (true && vectorSum.magnitudeSquared != 0.0) printdbg(this, wut)
if (false && printdbg1 && vectorSum.magnitudeSquared != 0.0) printdbg(this, wut)
}
if (printdbg1 && vectorSum.magnitudeSquared != 0.0) println("")