|
<!DOCTYPE html> |
|
<html lang="en-us"> |
|
<head> |
|
<meta charset="utf-8"> |
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
|
<title>Unity Web Player | RagdollTrainer</title> |
|
<link rel="shortcut icon" href="TemplateData/favicon.ico"> |
|
<link rel="stylesheet" href="TemplateData/style.css"> |
|
</head> |
|
<body> |
|
<div id="unity-container" class="unity-desktop"> |
|
<canvas id="unity-canvas" width=960 height=600 tabindex="-1"></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-warning"> </div> |
|
<div id="unity-footer"> |
|
<div id="unity-logo-title-footer"></div> |
|
<div id="unity-fullscreen-button"></div> |
|
<div id="unity-build-title">RagdollTrainer</div> |
|
</div> |
|
</div> |
|
<script> |
|
var canvas = document.querySelector("#unity-canvas"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function unityShowBanner(msg, type) { |
|
var warningBanner = document.querySelector("#unity-warning"); |
|
function updateBannerVisibility() { |
|
warningBanner.style.display = warningBanner.children.length ? 'block' : 'none'; |
|
} |
|
var div = document.createElement('div'); |
|
div.innerHTML = msg; |
|
warningBanner.appendChild(div); |
|
if (type == 'error') div.style = 'background: red; padding: 10px;'; |
|
else { |
|
if (type == 'warning') div.style = 'background: yellow; padding: 10px;'; |
|
setTimeout(function() { |
|
warningBanner.removeChild(div); |
|
updateBannerVisibility(); |
|
}, 5000); |
|
} |
|
updateBannerVisibility(); |
|
} |
|
|
|
var buildUrl = "Build"; |
|
var loaderUrl = buildUrl + "/web.loader.js"; |
|
var config = { |
|
arguments: [], |
|
dataUrl: buildUrl + "/web.data.gz", |
|
frameworkUrl: buildUrl + "/web.framework.js.gz", |
|
codeUrl: buildUrl + "/web.wasm.gz", |
|
streamingAssetsUrl: "StreamingAssets", |
|
companyName: "UnityTechnologies", |
|
productName: "RagdollTrainer", |
|
productVersion: "0.3.4", |
|
showBanner: unityShowBanner, |
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (/iPhone|iPad|iPod|Android/i.test(navigator.userAgent)) { |
|
|
|
|
|
var meta = document.createElement('meta'); |
|
meta.name = 'viewport'; |
|
meta.content = 'width=device-width, height=device-height, initial-scale=1.0, user-scalable=no, shrink-to-fit=yes'; |
|
document.getElementsByTagName('head')[0].appendChild(meta); |
|
document.querySelector("#unity-container").className = "unity-mobile"; |
|
canvas.className = "unity-mobile"; |
|
|
|
|
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
canvas.style.width = "960px"; |
|
canvas.style.height = "600px"; |
|
} |
|
|
|
document.querySelector("#unity-loading-bar").style.display = "block"; |
|
|
|
var script = document.createElement("script"); |
|
script.src = loaderUrl; |
|
script.onload = () => { |
|
createUnityInstance(canvas, config, (progress) => { |
|
document.querySelector("#unity-progress-bar-full").style.width = 100 * progress + "%"; |
|
}).then((unityInstance) => { |
|
document.querySelector("#unity-loading-bar").style.display = "none"; |
|
document.querySelector("#unity-fullscreen-button").onclick = () => { |
|
unityInstance.SetFullscreen(1); |
|
}; |
|
|
|
}).catch((message) => { |
|
alert(message); |
|
}); |
|
}; |
|
|
|
document.body.appendChild(script); |
|
|
|
</script> |
|
</body> |
|
</html> |
|
|