• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 253 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0054 秒)

81. 关于如何解析远程.xml文件的问题 [ 69%]

...远程接收一个.xml文件  hrRerust.send("http://192.168.1.21:90/Game_Config.xml", null, "get", "text",null);          trace(hrRerust.data); 该语句可以读取上面.xml文件的内容 但是 我用了一些方法 都无法像本地.xml被解析后存放到数组当中 请那位高手提...

来源: Laya_社区 发布时间: 20161120

82. 我二进制资源load之后,为什么通过getRes获取不到。 [ 69%]

... { url: "res/atlas/images/guide.atlas", type: Laya.Loader.ATLAS }, { url: "config/data.txt", type: Laya.Loader.BUFFER }]; Laya.loader.load(resources, Handler.create(this, this.onComplete), Handler.create(this, this.onProcess), null, 1, false); } onComplete(e,a,b) { console.log('资源加载完成!...

来源: Laya_社区 发布时间: 20180816

83. mac平台1.7.20.2beta版本下compileTargets设置不生效 [ 68%]

...extensions/bowlerhatllc.vscode-nextgenas/node_modules/flexjs/frameworks/js-config.xml' severity: '错误' message: '无法打开“/Applications/LayaAirIDE_beta.app/Contents/Resources/app/extensions/bowlerhatllc.vscode-nextgenas/node_modules/flexjs/js/libs/GCL.swc”。 /Applications/LayaAirIDE_beta...

来源: Laya_社区 发布时间: 20180914

84. ide 2.4 layaair2-cmd 编译报错 [ 68%]

...ents/GameTowertest/.laya/compile.js [14:22:35] Starting 'compile'... rpt2: config error TS18003: No inputs were found in config file 'tsconfig.json'. Specified 'include' paths were '["**/*"]' and 'exclude' paths were '[]'. [14:22:35] 'compile' errored after 286 ms [14:22:35] Error: Unexpected token ...

来源: Laya_社区 发布时间: 20191115

85. Android真机调试JavaScript · LayaAir3.0文档 · LAYABOX [ 68%]

...Studio打开构建后的工程。 打开android_studio/app/src/main/assets/config.ini,修改JSDebugMode的值,设置需要的调试模式。如图2-1所示, (图2-1) JSDebugMode的取值和含义如下: 取值 含义 0 关闭调试功能 1 Debug/Normal模式 2 Debug/Wait模式 当项目正...

来源: Laya3.0_文档 发布时间: 20241023

86. webstorm能编译ts代码到bundle.js 里面吗 [ 67%]

...加prevTasks let prevTasks = ""; if (global.publish) { prevTasks = ["loadConfig"]; } console.log("jsroads------prevTasks:" + JSON.stringify(prevTasks)); //使用browserify,转换ts到js,并输出到bin/js目录 gulp.task("compile", "", function () { // 发布时调用编译功能,判断是否...

来源: Laya_社区 发布时间: 20181221

87. 发布时勾选压缩js后,gulp uglify生成的sourcemap在哪里 [ 67%]

...task("compressJs", ["compressJson"], function () { if (config.compressJs) { return gulp.src(config.compressJsFilter, { base: releaseDir }) .pipe(sourcemaps.init({loadMaps:true})) .pipe(uglify({ mangle: { keep_fnames:true } })) .pipe(sourcemaps.write(releaseDir + '/../sourcemaps')...

来源: Laya_社区 发布时间: 20190528

88. 打包ios时,第第一次进入游戏闪退,第二次就没问题,报一下错误 [ 66%]

....937914+0800 qimiaomuchanIOS[5815:1707048] require(/sdcard/layabox/scripts/config.js) 2018-01-28 23:29:52.940149+0800 qimiaomuchanIOS[5815:1707048] found the file in the package:scripts/config.js 2018-01-28 23:29:52.961968+0800 qimiaomuchanIOS[5815:1707009] Download [ ]:http://petapp.thepubliccoin.c...

来源: Laya_社区 发布时间: 20180129

89. demo中的2d和3d混合 加载ktx的资源 会白色的 其他ui没有问题 [ 65%]

...  //加载IDE指定的场景         Laya.loader.load([{url:"minastc.config.json",type:Laya.Loader.JSON}],new Laya.Handler(this,function(){             this.astcconfig = Laya.loader.getRes("minastc.config.json");             for(var key in this.astcconfig){                 v...

来源: Laya_社区 发布时间: 20221013

90. 使用typescript开发项目,解决文件引用顺序问题 [ 64%]

...,可以使用ts的import/export处理这个问题 一、调试 修改tsconfig.json,把module和target都改为ES6,因为es6的语法和ts很像,调试的时候看es6就可以了,索性把sourceMap也关掉{ "compilerOptions": { "module": "ES6", "target": "ES6", "sourceMap": false } } 删...

来源: Laya_社区 发布时间: 20171120