-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
39 lines (38 loc) · 1.13 KB
/
game.html
File metadata and controls
39 lines (38 loc) · 1.13 KB
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>
<title>Glunzunk Engine</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" href="assets/css/satoshi.css">
<link rel="stylesheet" href="assets/fonts/web/inter.css">
<link rel="stylesheet" href="assets/fonts/roboto/style.css">
<link rel="stylesheet" href="editor.css">
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<style>
#renderCanvas {
position: fixed;
top: 0;
z-index: -5;
width: 100%;
height: 100%;
touch-action: none;
}
</style>
<script type="importmap">
{
"imports": {
"three": "./libs/threejs/three.module.min.js",
"three/addons/": "./libs/threejs/jsm-addons/",
"three/external-shaders/": "./libs/threejs/external-shaders/"
}
}
</script>
<script src="scripts/engine/glunzunk.js" type=module></script>
<script src="scripts/editor/init.js" type=module></script>
<script src="scripts/editor/loadproject.js" type=module></script>
<script src="scripts/editor/render.js" type=module></script>
</head>
<body>
<canvas id=renderCanvas></canvas>
</body>
</html>