space-game/gameEditor/index.html
Michael Mainguy 4c9e1f65c0 Add BabylonJS Editor workspace boilerplate
Includes:
- Editor project configuration and cache files
- Sample scene with example meshes and geometries
- Asset files (asteroid, base GLB models, environment map)
- Vite/TypeScript configuration for editor preview
- Editor script components for game objects

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-09 07:49:00 -06:00

18 lines
579 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<title>VanillaJS App</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<main id="app" class="flex w-screen h-screen flex-col items-center justify-between">
<canvas id="canvas" class="w-full h-full outline-none select-none"></canvas>
</main>
<script src="/src/main.ts" type="module"></script>
</body>
</html>