more timers

This commit is contained in:
minjaesong
2021-08-11 22:07:15 +09:00
parent 740eab3e84
commit 884c129837

View File

@@ -90,9 +90,16 @@ object WorldSimulator {
updateXTo = updateXFrom + DOUBLE_RADIUS
updateYTo = updateYFrom + DOUBLE_RADIUS
}
//moveFluids(delta)
displaceFallables(delta)
simulateWires(delta)
AppLoader.measureDebugTime("WorldSimulator.fluids") {
//moveFluids(delta)
}
AppLoader.measureDebugTime("WorldSimulator.fallables") {
displaceFallables(delta)
}
AppLoader.measureDebugTime("WorldSimulator.wires") {
simulateWires(delta)
}
//printdbg(this, "============================")
}