mirror of
https://github.com/codeninjasuk/game-food-frenzy.git
synced 2024-11-21 23:17:52 -05:00
25 lines
932 B
HTML
25 lines
932 B
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 | Food Frenzy</title>
|
|
<link rel="shortcut icon" href="TemplateData/favicon.ico">
|
|
<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/WebPublish.json", {onProgress: UnityProgress});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div class="webgl-content">
|
|
<div id="unityContainer" style="width: 960px; height: 600px"></div>
|
|
<div class="footer">
|
|
<div class="webgl-logo"></div>
|
|
<div class="fullscreen" onclick="unityInstance.SetFullscreen(1)"></div>
|
|
<div class="title">Food Frenzy</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|