fix: format & lint

This commit is contained in:
Tom Boullay
2026-04-27 11:20:59 +02:00
parent 208b43295c
commit 7a01d86761
2 changed files with 5 additions and 5 deletions
@@ -4,7 +4,10 @@ import {
DEBUG_CAMERA_MAX_DISTANCE,
DEBUG_CAMERA_MIN_DISTANCE,
} from "@/data/debugConfig";
import { PLAYER_EYE_HEIGHT, PLAYER_SPAWN_POSITION_GAME } from "@/data/playerConfig";
import {
PLAYER_EYE_HEIGHT,
PLAYER_SPAWN_POSITION_GAME,
} from "@/data/playerConfig";
const DEBUG_CAMERA_TARGET = [
PLAYER_SPAWN_POSITION_GAME[0],
+1 -4
View File
@@ -37,10 +37,7 @@ export function World(): React.JSX.Element {
)}
{cameraMode !== "debug" ? (
<PlayerComponent
octree={octree}
spawnPosition={playerSpawnPosition}
/>
<PlayerComponent octree={octree} spawnPosition={playerSpawnPosition} />
) : null}
</>
);