25 lines
803 B
HTML
25 lines
803 B
HTML
<!DOCTYPE html>
|
|
<html lang="en-us">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf8">
|
|
<title>Unity WebGL Player | The Black man</title>
|
|
|
|
</head>
|
|
<body style="margin:0;">
|
|
<canvas id="unity-canvas" style="width: 100%; height: 100%; background: #231F20"></canvas>
|
|
<script src="Build/TheBlackMan.loader.js"></script>
|
|
<script>
|
|
createUnityInstance(document.querySelector("#unity-canvas"), {
|
|
dataUrl: "Build/TheBlackMan.data",
|
|
frameworkUrl: "Build/TheBlackMan.framework.js",
|
|
codeUrl: "Build/TheBlackMan.wasm",
|
|
streamingAssetsUrl: "StreamingAssets",
|
|
companyName: "Samuel",
|
|
productName: "The Black man",
|
|
productVersion: "1.0",
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|