mirror of
https://gitlab.com/skysthelimit.dev/selenite.git
synced 2025-06-16 02:22:07 -05:00
25 lines
800 B
HTML
25 lines
800 B
HTML
<!DOCTYPE html>
|
|
<html lang="en-us">
|
|
<head>
|
|
|
|
<script src="/js/all.js"></script>
|
|
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>Cell Machine</title>
|
|
<link rel="stylesheet" href="TemplateData/style.css">
|
|
<script src="TemplateData/UnityProgress.js"></script>
|
|
<script src="Build/UnityLoader.js"></script>
|
|
<script>
|
|
var unityInstance = UnityLoader.instantiate("unityContainer", "Build/webv0_1_1.json", {onProgress: UnityProgress});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div class="webgl-content">
|
|
<div id="unityContainer" style="width: 960px; height: 540px"></div>
|
|
<div class="footer">
|
|
<div class="fullscreen" onclick="unityInstance.SetFullscreen(1)"></div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |