Compare commits

..

3 commits

Author SHA1 Message Date
c428099b9e
Disable culling 2026-03-10 10:52:10 -04:00
941582d07d
Add neocities deploy 2026-03-09 18:30:16 -04:00
ab6099142b
Add neocities deploy 2026-03-09 17:56:53 -04:00
2 changed files with 11 additions and 0 deletions

View file

@ -1,6 +1,9 @@
default: default:
@just --list @just --list
dev:
bun run dev
lint: lint:
bun run lint bun run lint
@ -11,3 +14,9 @@ test:
bun run test bun run test
check: lint typecheck test check: lint typecheck test
build:
bun run build
neocities: build
bashcities -n -p ants push

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);