-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (29 loc) · 865 Bytes
/
index.html
File metadata and controls
33 lines (29 loc) · 865 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
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<head lang="en-US">
<meta charset="utf-8">
<title>Index</title>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="container">
<canvas class="entrypoint"></canvas>
<div class="overlay">
<div>FPS: <span class="FPS">0</span></div>
<div>FRAME_TIME: <span class="FRAME_TIME">0</span></div>
</div>
</div>
<script defer type="importmap">
{
"imports":
{
"gl-matrix-math": "./engine/dependencies/gl-matrix/2.8.1/gl-matrix-min.js",
"ghcc": "./engine/ghcc.base.engine.js"
}
}
</script>
<!-- <script defer type="module" src="./tests/Box-translate-rotate-cubes.test.js"></script> -->
<!-- <script defer type="module" src="./tests/Box-rotate-cubes.test.js"></script> -->
<script defer type="module" src="./tests/Entities-rotate-fixed-to-cube.test.js"></script>
</body>
</html>