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

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

31. xhr的ononce什么区别,官网例子 [ 83%]

...时时间; xhr.once(Event.COMPLETE,this,completeHandler); xhr.once(Event.ERROR,this,errorHandler); xhr.on(Event.PROGRESS,this,processHandler); 2017-10-17 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Monica - ...

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

32. 骨骼动画进阶(ActionScript-2D进阶篇(AS3)-动画进阶) [ 83%]

...mplet(); templet.on(Event.COMPLETE, this, parseComplete); templet.on(Event.ERROR, this, onError); //加载动画文件 templet.loadAni("res/spine/goblins/goblins.sk"); } private function onError():void { trace("parse error"); } private function parseComplete():void { //创建第一个动画 var skel...

来源: Laya2.0_文档 发布时间: 20210715

33. spine 播放错乱 [ 82%]

...Laya.Event.COMPLETE, this, this.parseComplete); this.templet.on(Laya.Event.ERROR, this, this.onError); } private parseComplete(): void { this.skeleton = this.templet.buildArmature(); Laya.stage.addChild(this.skeleton); this.skeleton.pos(Laya.Browser.width / 2, Laya.Browser.height / 2 + 100); //this....

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

34. Laya2.0编译后所有js都自动合并到bundle.js中,导致bundle.js过大,加载速度很慢,bundle.js可以拆分吗 [ 82%]

.... */     // "checkJs": true,                       /* Report errors in .js files. */     // "jsx": "preserve",                     /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */     // "declaration": true,                   /* Genera...

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

35. websocket无法连接 [ 82%]

...t.on(Laya.Event.CLOSE, this, this.closeHandler); this.socket.on(Laya.Event.ERROR, this, this.errorHandler);   以上代码,host传入 "localhost" 可以连接上服务器, 将host 换成内网IP  172.19.1.236 就无法连接。 同事在他的机器用JS使用内网IP 也可以连接。 2018-0...

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

36. 加载-错误处理和进度 [ 81%]

...irIDE让项目开发更高效。let numLoaded = 0; class Loader_ProgressAndErrorHandle { constructor() { const Browser = Laya.Browser, WebGL = Laya.WebGL, Stage = Laya.Stage, Stat = Laya.Stat, Handler = Laya.Handler, Event = Laya.Event, Loader = Laya.Loader; // 不支持WebGL时自动切换至Canvas...

来源: Laya2.0_示例 发布时间: 20241118

37. mac os ts环境配置 [ 81%]

...出现错误 src/uiscripts/InterServiceSports/OverServiceFight.ts(24,48): error TS2339: Property 'getSquareIconPath' does not exist on type 'typeof ui'. src/uiscripts/InterServiceSports/OverServiceFight.ts(32,48): error TS2339: Property 'getSquareIconPath' does not exist on type 'typeof ui'. src/uti...

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

38. 一个LayaAir moveout target 设计上的疑问? [ 81%]

...yaair IDE的帧属性面板不见了 编译调试启动chrome出现错误: Error processing launch: Error Could not attach to main target 官方新手游戏引导示例中关于hit和unHit的使用疑问 想让一个2D的图形被鼠标点击时缩放一下,或左右摇晃一下,最后回到原...

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

39. socket通讯返回数据 [ 81%]

...t.on(Laya.Event.CLOSE, this, this.closeHandler); this.socket.on(Laya.Event.ERROR, this, this.errorHandler); // this.socket.send("hello world");//###################################################### } private openHandler(event: any = null): void { //正确建立连接; console.log("建立连接")...

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

40. 【经验分享】如何让ts项目支持装饰器语法,以及自动化发布相关的一些东西 [ 80%]

... 文件:将该文件的 16065 行注释掉,注释后的代码如下: error(err, pos) { if (typeof err === 'string') err = { message: err }; if (pos) augmentCodeLocation(err, pos, curSource, id); err.id = id; err.hook = 'transform'; // return pluginContext.error(err); },该方法虽然可以解...

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