1

我曾尝试谷歌并阅读 Quintus wiki,但没有解决方案。为什么 quintus 平台游戏需要服务器才能运行?因为这个我不能使用 phonegap 或 cocoonjs 将我的项目转换为 android 游戏。有没有更好的 HTML5 2d 游戏引擎可以在没有服务器的情况下使用?或者我该怎么做才能让 quintus 作为 android 应用程序运行?

4

1 回答 1

3

所以我终于在一点点帮助下设法让游戏运行起来,所以我在这里为自己回答。要让游戏在 Android 手机上运行,​​您需要引用一些代码。

quintus.js尝试从您的文件中注释掉此代码,然后重试。我遇到了类似的问题,注释掉这段代码解决了它:

if(document.location.origin === "file://" || document.location.origin === "null") {
  if(!Q.fileURLAlert) {
    Q.fileURLAlert = true;
    alert("Quintus Error: Loading assets is not supported from file:// urls - please run from a local web-server and try again");
  }
  return errorCallback();

然后使用CocoonJS Webview+编译并安装debug.apk以运行游戏。

于 2014-10-07T20:35:18.910 回答