some changes

This commit is contained in:
minjaesong
2024-03-11 23:59:21 +09:00
parent b05ae829cc
commit c829245b41
2 changed files with 5 additions and 6 deletions

View File

@@ -685,9 +685,6 @@ open class ActorWithBody : Actor {
// isStationary = (hitbox - oldHitbox).magnitudeSquared < PHYS_EPSILON_VELO
isStationary = isCloseEnough(hitbox.startX, oldHitbox.startX) && // this is supposed to be more accurate, idk
isCloseEnough(hitbox.startY, oldHitbox.startY)
printdbg(this, tooltipShowing.keys.sorted())
}
fun getDrag(externalForce: Vector2): Vector2 {