我正在开发Unity WebGL应用程序;因为它是“重量级”的,所以我想在网站上托管HTML主页面,并将我的应用程序上传到远程位置(例如CDN),这样就不会出现带宽限制问题。
所以
www.mysite.com/mygame.html包含我的应用上传到远程位置的引用。
这是我的HTML
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>MyApp</title>
<link rel="stylesheet" href="http://www.remotehost.com/myApp/TemplateData/style.css">
<script src="http://www.remotehost.com/myApp/Build/UnityLoader.js"></script>
<script>
var gameInstance = UnityLoader.instantiate("gameContainer", "http://www.remotehost.com/myApp/Build/Paris-01.json");
</script>
</head>
<body>
<div class="webgl-content">
<div id="gameContainer" style="width: 960px; height: 600px; margin: auto"></div>
</div>
错误是“白页”,并且没有加载任何内容。