-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (31 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta property="og:image" content="https://asturaphoenix.github.io/Labyrinth/preview.png">
<meta property="og:image:alt" content="3D maze screenshot">
<meta property="og:type" content="website">
<meta property="og:url" content="https://asturaphoenix.github.io/Labyrinth/">
<meta property="og:title" content="Labyrinth">
<meta property="og:description"
content="An unpolished maze game in Unity. Primary controls are WADS and mouse. I recommend the 3D maze.">
<title>Unity WebGL Player | Labyrinth</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<canvas id="unity-canvas"></canvas>
<script src="Build/WebGL.loader.js"></script>
<script>
createUnityInstance(document.querySelector("#unity-canvas"), {
dataUrl: "Build/WebGL.data",
frameworkUrl: "Build/WebGL.framework.js",
codeUrl: "Build/WebGL.wasm",
streamingAssetsUrl: "StreamingAssets",
companyName: "Astura Phoenix",
productName: "Labyrinth",
productVersion: "0.1",
});
</script>
</body>
</html>