- [FIX] Ja eix correctament del editor

- [NEW] Més gràfics
- [NEW] Ara es pot modificar el valor dels camps escribint el numero
This commit is contained in:
2024-07-10 19:44:23 +02:00
parent 2a629529fd
commit 7365d72360
8 changed files with 229 additions and 35 deletions

View File

@@ -109,7 +109,13 @@ bool game::loop()
}
break;
case M_GAME:
if (!modules::game::loop()) { modules::ingame::init(); current_module = M_INGAME; }
if (!modules::game::loop()) {
if (editor::isDevMode()) {
return false;
} else {
modules::ingame::init(); current_module = M_INGAME;
}
}
break;
case M_INGAME:
option = modules::ingame::loop();