大约有 253 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0054 秒)
...远程接收一个.xml文件 hrRerust.send("http://192.168.1.21:90/Game_Config.xml", null, "get", "text",null); trace(hrRerust.data); 该语句可以读取上面.xml文件的内容 但是 我用了一些方法 都无法像本地.xml被解析后存放到数组当中 请那位高手提...
来源: Laya_社区 发布时间: 20161120
... { 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
...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
...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
...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
...加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
...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
....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
... //加载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
...,可以使用ts的import/export处理这个问题 一、调试 修改tsconfig.json,把module和target都改为ES6,因为es6的语法和ts很像,调试的时候看es6就可以了,索性把sourceMap也关掉{ "compilerOptions": { "module": "ES6", "target": "ES6", "sourceMap": false } } 删...
来源: Laya_社区 发布时间: 20171120