Put gui tick above other systems

This commit is contained in:
2026-03-10 19:57:00 -03:00
parent e9da307841
commit 25c950422b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -38,11 +38,11 @@ export class ClientWorld extends World {
// Logic systems
this.add_system(new UIInteractionSystem(), "main_menu");
this.add_system(new UIInteractionSystem(), "paused");
this.add_system(new GuiTickSystem(), "game");
this.add_system(new ClickableSystem(), "game");
this.add_system(new PlayerControlsSystem(), "game");
this.add_system(new MovementSystem(), "game");
this.add_system(new DimensionLogicSystem(), "game");
this.add_system(new GuiTickSystem(), "game");
// render systems
this.add_system(new RenderSystem(), "game");