UI and about page in game

This commit is contained in:
2026-02-24 16:57:51 -03:00
parent fe885a9e24
commit 86d527ae51
12 changed files with 268 additions and 6 deletions
+4
View File
@@ -17,6 +17,10 @@ export class PlayerControlsSystem extends System {
}
update(world: ClientWorld, _delta: number): void {
if (world.paused) {
return;
}
const velocity = this.player.get(Velocity)!;
const controls = this.player.get(PlayerControls)!;