This commit is contained in:
2026-03-12 17:09:25 -03:00
parent 244f0eb741
commit d18942196b
21 changed files with 422 additions and 581 deletions
+1 -2
View File
@@ -11,8 +11,7 @@ export class MovementSystem extends System {
if (position && velocity) {
position.x += velocity.vx * delta;
position.y += velocity.vy * delta;
position.x = Math.round(position.x);
position.y = Math.round(position.y);
position.z += velocity.vz * delta;
}
}
}