109 lines
3.9 KiB
HTML
109 lines
3.9 KiB
HTML
<!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 | {{{ PRODUCT_NAME }}}</title>
|
|
<link rel="shortcut icon" href="TemplateData/favicon.ico">
|
|
<link rel="stylesheet" href="TemplateData/style.css">
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
|
|
<script src="unity-webview.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="unity-container" class="unity-desktop">
|
|
<canvas id="unity-canvas"></canvas>
|
|
<div id="unity-loading-bar">
|
|
<div id="unity-logo"></div>
|
|
<div id="unity-progress-bar-empty">
|
|
<div id="unity-progress-bar-full"></div>
|
|
</div>
|
|
</div>
|
|
<div id="unity-footer">
|
|
<div id="unity-webgl-logo"></div>
|
|
<div id="unity-fullscreen-button"></div>
|
|
<div id="unity-build-title">{{{ PRODUCT_NAME }}}</div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
var buildUrl = "Build";
|
|
var loaderUrl = buildUrl + "/{{{ LOADER_FILENAME }}}";
|
|
var config = {
|
|
dataUrl: buildUrl + "/{{{ DATA_FILENAME }}}",
|
|
frameworkUrl: buildUrl + "/{{{ FRAMEWORK_FILENAME }}}",
|
|
codeUrl: buildUrl + "/{{{ CODE_FILENAME }}}",
|
|
#if MEMORY_FILENAME
|
|
memoryUrl: buildUrl + "/{{{ MEMORY_FILENAME }}}",
|
|
#endif
|
|
#if SYMBOLS_FILENAME
|
|
symbolsUrl: buildUrl + "/{{{ SYMBOLS_FILENAME }}}",
|
|
#endif
|
|
streamingAssetsUrl: "StreamingAssets",
|
|
companyName: "{{{ COMPANY_NAME }}}",
|
|
productName: "{{{ PRODUCT_NAME }}}",
|
|
productVersion: "{{{ PRODUCT_VERSION }}}",
|
|
};
|
|
|
|
var container = document.querySelector("#unity-container");
|
|
var canvas = document.querySelector("#unity-canvas");
|
|
var loadingBar = document.querySelector("#unity-loading-bar");
|
|
var progressBarFull = document.querySelector("#unity-progress-bar-full");
|
|
var fullscreenButton = document.querySelector("#unity-fullscreen-button");
|
|
var width0 = "{{{ WIDTH }}}px";
|
|
var height0 = "{{{ HEIGHT }}}px";
|
|
|
|
if (/iPhone|iPad|iPod|Android/i.test(navigator.userAgent)) {
|
|
container.className = "unity-mobile";
|
|
config.devicePixelRatio = 1;
|
|
} else {
|
|
canvas.style.width = "{{{ WIDTH }}}px";
|
|
canvas.style.height = "{{{ HEIGHT }}}px";
|
|
}
|
|
#if BACKGROUND_FILENAME
|
|
canvas.style.background = "url('" + buildUrl + "/{{{ BACKGROUND_FILENAME.replace(/'/g, '%27') }}}') center / cover";
|
|
#endif
|
|
loadingBar.style.display = "block";
|
|
|
|
document.addEventListener(
|
|
'fullscreenchange',
|
|
function() {
|
|
var p = document.getElementById('unity-container');
|
|
var c = document.getElementById('unity-canvas');
|
|
if (document.fullscreenElement) {
|
|
width0 = c.style.width;
|
|
height0 = c.style.height;
|
|
setTimeout(
|
|
function() {
|
|
c.style.width = getComputedStyle(p).width;
|
|
c.style.height = getComputedStyle(p).height;
|
|
},
|
|
250);
|
|
} else {
|
|
c.style.width = width0;
|
|
c.style.height = height0;
|
|
}
|
|
});
|
|
var script = document.createElement("script");
|
|
script.src = loaderUrl;
|
|
script.onload = () => {
|
|
createUnityInstance(canvas, config, (progress) => {
|
|
progressBarFull.style.width = 100 * progress + "%";
|
|
}).then((unityInstance) => {
|
|
window.unityInstance = unityInstance;
|
|
loadingBar.style.display = "none";
|
|
fullscreenButton.onclick = () => {
|
|
var p = document.getElementById('unity-container');
|
|
var c = document.getElementById('unity-canvas');
|
|
c.requestFullscreen = () => {
|
|
p.requestFullscreen();
|
|
};
|
|
unityInstance.SetFullscreen(1);
|
|
};
|
|
}).catch((message) => {
|
|
alert(message);
|
|
});
|
|
};
|
|
document.body.appendChild(script);
|
|
</script>
|
|
</body>
|
|
</html>
|