大约有 162 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0038 秒)
...题解答(最新版本:1.7.16) 编译调试启动chrome出现错误: Error processing launch: Error Could not attach to main target LayaAirIDE下如何使用mask? 红米K20pro 多个手指同时按下就会报这个错 object has in SimpleSingletonList 使用了u3D导出来的粒子,不停...
来源: Laya_社区 发布时间: 20180720
...emplet.on(Event.COMPLETE, this, this.parseComplete); this.templet.on(Event.ERROR, this, this.onError) } private function parseComplete(): void { this.skeleton = this.templet.buildArmature(); Laya.stage.addChild(this.skeleton); this.skeleton.pos(Browser.width / 2, Browser.height / 2 + 100); this.skel...
来源: Laya2.0_文档 发布时间: 20210715
...aya.Event.COMPLETE, handler.caller, handler.method); templet.on(Laya.Event.ERROR, this, this.printError); templet.loadAni(url); } printError(e) { console.error(e); } } //激活启动类 new Main(); 附件 : --> TEST2.zip 2022-05-30 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到...
来源: Laya_社区 发布时间: 20220530
layaMaxUI.js export ui bug (影响编译) [20:22:28] Error: Export 'ui' is not defined at error (D:\LayaAirIDE\resources\app\node_modules\rollup\dist\rollup.js:9402:30) at Module.error (D:\LayaAirIDE\resources\app\node_modules\rollup\dist\rollup.js:13340:9) at tryParse (D:\LayaAirIDE\resources\app\...
来源: Laya_社区 发布时间: 20190813
...ction(e) { alert("复制成功!"); e.clearSelection(); }); clipboard.on('error', function(e) { console.log("复制失败!",e); }); 2018-06-26 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 4 个回复 Laya_Aaron 赞同来...
来源: Laya_社区 发布时间: 20180626
...or invalid) var errMsg = AwesomeMessage.verify(message); if (errMsg) throw Error(errMsg); // Encode a message to an Uint8Array (browser) or Buffer (node) var buffer = AwesomeMessage.encode(message).finish(); // ... do something with buffer // Or, encode a plain object var buffer = AwesomeMessage.enc...
来源: Laya_示例 发布时间: 20241124
...or invalid) var errMsg = AwesomeMessage.verify(message); if (errMsg) throw Error(errMsg); // Encode a message to an Uint8Array (browser) or Buffer (node) var buffer = AwesomeMessage.encode(message).finish(); // ... do something with buffer // Or, encode a plain object var buffer = AwesomeMessage.enc...
来源: Laya2.0_示例 发布时间: 20241124
...pescript的问题 跑npm install -g typescript npm ERR! tar.unpack untar error /Users/jeffchang/.npm/typescript/1.8.10/package.tgz npm ERR! Darwin 15.6.0 npm ERR! argv "/usr/local/bin/node" "/usr/local/bin/npm" "install" "-g" "typescript" npm ERR! node v4.4.1 npm ERR! npm v2.14.20 npm ERR! path /u...
来源: Laya_社区 发布时间: 20160829
...ress); hr.once(Event.COMPLETE, this, onHttpRequestComplete); hr.once(Event.ERROR, this, onHttpRequestError); hr.send('http://111.73.45.19/index.php/Tgy/tgyPost', 'username=c11111&password=888888', 'post', 'text'); } function onHttpRequestError(e) { console.log(e); } function onHttpRequestProgres...
来源: Laya_社区 发布时间: 20170215
...收到消息抛出的事件 Event.CLOSE :socket关闭抛出的事件 Event.ERROR :连接出错抛出的事件 ``` 上面这四个事件是必须的,这也是我们处理网络消息的前提。 新建一个LayaAir空项目。声明一个Socket实例,声明一个Byte实例: ```typescript class ...
来源: Laya2.0_文档 发布时间: 20210714