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>
18 lines
579 B
HTML
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>
|