1 Star 0 Fork 2

dy/luxor

forked from 趣兔游戏/luxor 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.js 870 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhd 提交于 2017-06-21 18:23 . 开发
cc.game.onStart = function () {
if (!cc.sys.isNative && document.getElementById("pre_loading"))
document.body.removeChild(document.getElementById("pre_loading"));
cc.view.enableRetina(cc.sys.os === cc.sys.OS_IOS ? true : false);
cc.view.adjustViewPort(true);
var visibleFrame = cc.view.getFrameSize();
if (visibleFrame.height / visibleFrame.width < g_winHeight / g_winWidth) {
cc.view.setDesignResolutionSize(g_winWidth, g_winHeight, cc.ResolutionPolicy.EXACT_FIT);
} else {
g_winHeight = visibleFrame.height * g_winWidth / visibleFrame.width;
cc.view.setDesignResolutionSize(g_winWidth, g_winHeight, cc.ResolutionPolicy.FIXED_WIDTH);
}
cc.view.resizeWithBrowserSize(true);
cc.LoaderScene.preload(g_resources, function () {
cc.director.runScene(new GameScene());
}, this);
};
cc.game.run();
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/Dcivan/luxor.git
git@gitee.com:Dcivan/luxor.git
Dcivan
luxor
luxor
master

搜索帮助