Compare commits
3 commits
1c74aabd53
...
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:
|
||||
@just --list
|
||||
|
||||
dev:
|
||||
bun run dev
|
||||
|
||||
lint:
|
||||
bun run lint
|
||||
|
||||
|
|
@ -11,3 +14,9 @@ test:
|
|||
bun run 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;
|
||||
ground.frustumCulled = false;
|
||||
|
||||
this.add(ground);
|
||||
|
||||
|
|
@ -187,6 +188,7 @@ export default class ScreenScene extends AbstractScene {
|
|||
);
|
||||
|
||||
ants.position.x = ants.position.y = -0.5;
|
||||
ants.frustumCulled = false;
|
||||
|
||||
this.add(ants);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue