mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-12 19:44:05 +09:00
calendar sprite removing a spring
This commit is contained in:
Binary file not shown.
@@ -267,7 +267,8 @@ public class App implements ApplicationListener {
|
|||||||
Gdx.gl20.glViewport(0, 0, width, height);
|
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 float loadTimer = 0f;
|
||||||
private static final float showupTime = 100f / 1000f;
|
private static final float showupTime = 100f / 1000f;
|
||||||
|
|||||||
@@ -698,7 +698,7 @@ open class ActorWithBody : Actor {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun displaceHitbox() {
|
private fun displaceHitbox() {
|
||||||
val printdbg1 = true
|
val printdbg1 = false && App.IS_DEVELOPMENT_BUILD
|
||||||
// // HOW IT SHOULD WORK // //
|
// // HOW IT SHOULD WORK // //
|
||||||
// ////////////////////////
|
// ////////////////////////
|
||||||
// combineVeloToMoveDelta now
|
// combineVeloToMoveDelta now
|
||||||
@@ -772,7 +772,7 @@ open class ActorWithBody : Actor {
|
|||||||
|
|
||||||
fun debug2(wut: Any?) {
|
fun debug2(wut: Any?) {
|
||||||
// vvvvv set it true to make debug print work
|
// 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("")
|
if (printdbg1 && vectorSum.magnitudeSquared != 0.0) println("")
|
||||||
|
|||||||
Reference in New Issue
Block a user