-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (33 loc) · 1003 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui"
/>
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- <title>Unity WebGL Player | SuperShapes</title>
<script src="webgl/SuperVolume/Build/UnityLoader.js"></script>
<script>
var gameInstance = UnityLoader.instantiate(
"gameContainer",
"webgl/SuperVolume/Build/WebGl.json"
);
</script> -->
<title>Unity WebGL Player | A*</title>
<script src="webgl/astar-webgl/Build/UnityLoader.js"></script>
<script>
var gameInstance = UnityLoader.instantiate(
"gameContainer",
"webgl/astar-webgl/Build/astar-webgl.json"
);
</script>
</head>
<body style="background-color: black;">
<div
id="gameContainer"
style="width: 100vw; height: 100vh; margin: auto;"
></div>
</body>
</html>