fix: archi

This commit is contained in:
Tom Boullay
2026-04-27 10:53:50 +02:00
parent 089763713a
commit 0e9d711be5
16 changed files with 242 additions and 192 deletions
+2 -2
View File
@@ -6,13 +6,13 @@ import { PlayerCamera } from "@/world/player/PlayerCamera";
import { PlayerController } from "@/world/player/PlayerController";
interface PlayerComponentProps {
octree?: Octree | null;
octree: Octree | null;
spawnY: number;
}
export function PlayerComponent({
octree = null,
spawnY,
octree,
}: PlayerComponentProps): React.JSX.Element {
const camera = useThree((state) => state.camera);