chore: no need to be so noisy

This commit is contained in:
2025-11-06 17:09:49 +13:00
parent e1aa8eb6d5
commit 18821b9cc9

View File

@@ -2,12 +2,10 @@ float x = 50;
float y = 100;
void Update(float dt) {
x += 500 * dt;
x += 50 * dt;
if (x > 800) {
x = 0;
Print("X position reset!");
Log(LOG_INFO, "Log INFO: reset happened");
Log(LOG_WARNING, "Log WARNING: reset happened");
Log(LOG_ERROR, "Log ERROR: reset happened");
}
}//