Skip to content

Commit 8417665

Browse files
committed
game checkpoint
1 parent a22ece7 commit 8417665

30 files changed

+5016
-185
lines changed

src/components/game/IslandExplorer.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Main Island Explorer game component
2-
// This file imports R3F/Drei dependencies - only loaded when route is accessed
2+
// Uses vanilla Three.js engine for better performance
33

4-
import { GameScene } from './scene/GameScene'
4+
import { VanillaGameScene } from './scene/VanillaGameScene'
55
import { IntroOverlay } from './ui/IntroOverlay'
66
import { GameHUD } from './ui/GameHUD'
77
import { TouchControls } from './ui/TouchControls'
@@ -19,7 +19,7 @@ export default function IslandExplorer() {
1919
<div className="relative w-full h-[calc(100dvh-var(--navbar-height))] bg-sky-500">
2020
{/* 3D Scene */}
2121
<div className="absolute inset-0">
22-
<GameScene />
22+
<VanillaGameScene />
2323
</div>
2424

2525
{/* Vignette overlay for depth */}

0 commit comments

Comments
 (0)