Compare commits
3 commits
b2fb120b6b
...
c428099b9e
| Author | SHA1 | Date | |
|---|---|---|---|
| c428099b9e | |||
| 941582d07d | |||
| ab6099142b |
2 changed files with 11 additions and 0 deletions
9
justfile
9
justfile
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue