Disable culling

This commit is contained in:
Jared Miller 2026-03-10 10:52:10 -04:00
parent 941582d07d
commit c428099b9e
Signed by: shmup
GPG key ID: 22B5C6D66A38B06C

View file

@ -47,6 +47,7 @@ export default class ScreenScene extends AbstractScene {
); );
this.groundMaterial = ground.material; this.groundMaterial = ground.material;
ground.frustumCulled = false;
this.add(ground); this.add(ground);
@ -187,6 +188,7 @@ export default class ScreenScene extends AbstractScene {
); );
ants.position.x = ants.position.y = -0.5; ants.position.x = ants.position.y = -0.5;
ants.frustumCulled = false;
this.add(ants); this.add(ants);