fix: hot reload on all scripts

This commit is contained in:
2025-11-06 17:08:04 +13:00
parent ea7c45ae01
commit df51c75fb8
6 changed files with 70 additions and 18 deletions

View File

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