-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 795 Bytes
/
Copy pathindex.html
File metadata and controls
23 lines (23 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Unity WebGL Player | CyberDefender 2077</title>
</head>
<body style="text-align: center">
<canvas id="unity-canvas" style="width: 1280px; height: 720px; background: #1C1139"></canvas>
<script src="Build/Web.loader.js"></script>
<script>
createUnityInstance(document.querySelector("#unity-canvas"), {
dataUrl: "Build/Web.data",
frameworkUrl: "Build/Web.framework.js",
codeUrl: "Build/Web.wasm",
streamingAssetsUrl: "StreamingAssets",
companyName: "Plane Gaming",
productName: "CyberDefender 2077",
productVersion: "1.1",
});
</script>
</body>
</html>