-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 844 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (27 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>CIWS Command</title>
<link rel="stylesheet" href="style.css" />
<!-- Resolve bare "three" + addon imports to the locally vendored copy. -->
<script type="importmap">
{
"imports": {
"three": "./vendor/three/three.module.js",
"three/addons/": "./vendor/three/addons/"
}
}
</script>
</head>
<body>
<!-- WebGL scene (3D world) underneath, 2D HUD overlay on top. -->
<canvas id="scene"></canvas>
<canvas id="hud"></canvas>
<a id="credit" href="https://github.com/andrewmunn/ciws-command" target="_blank" rel="noopener">
Created by Andrew Munn
</a>
<script type="module" src="js/main.js"></script>
</body>
</html>