-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
39 lines (39 loc) · 1.14 KB
/
index.html
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
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles/core.css" />
<link rel="stylesheet" type="text/css" href="styles/style.css" />
<script type="module" src="src/main.ts"></script>
<title>SWGPU StarterKit</title>
<link rel="icon" href="textures/favicon.ico">
<link rel="icon" type="image/jpeg" href="textures/favicon.png" />
<style>
h1 {
margin-bottom:10px;
}
center {
margin-bottom:10px;
}
</style>
</head>
<body>
<div id="BRAND">
<div id="BRAND_TITLE">StarterKit</div>
<div id="BRAND_METRICS">
<span>Version: <b>1.0.0</b></span>
<br/>
<span>FPS: <b id="fps"></b>
<br/>
<span>3D Renderer Time: <b id="rt"></b>
</div>
</div>
<div id="APP" style="margin: 0 auto">
<div id="APP_FAIL"></div>
<canvas id="CANVAS_3D" width="1px" height="1px"></canvas>
<canvas id="CANVAS_2D" width="1px" height="1px"></canvas>
<div id="UI_ROOT"></div>
<div id="UI_FADELAYER"></div>
<div id="UI_OVERLAYER"></div>
</div>
</body>
</html>