feat: improve logging output, add #include support to AngelScript

This commit is contained in:
2025-11-06 14:37:35 +13:00
parent 9d8c3bd605
commit a337b9002f
8 changed files with 146 additions and 28 deletions

10
scripts/update.as Normal file
View File

@@ -0,0 +1,10 @@
float x = 50;
float y = 100;
void Update(float dt) {
x += 50 * dt;
if (x > 800) {
x = 0;
Print("X position reset!");
}
}