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

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

71. 图集动画结束回调有延迟 [ 75%]

...s.ded.on(Laya.Event.LABEL, this, this.onHitOver);  this.ded.on(Laya.Event.COMPLETE, this, this.onHitOver);  两种方法都会有延迟,不能100%执行 2018-11-08 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 3 个回...

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

72. laya.utils.TimeLine [ 74%]

...当前点移动到目标点。 TimeLineEventEvent Summary Defined By  complete整个缓动结束的时候会调度TimeLine  label当缓动到达标签时会调度。TimeLineProperty Detailscalepropertypublic var scale:Number = 1 缩放动画播放的速度。totalproperty total:int  [read-...

来源: laya_api 发布时间: 20170929

73. 关于.sk文件加载问题 [ 74%]

...接 提交 2 个回复 cuixueying 赞同来自: 为其添加tem.on(Event.COMPLETE,this,onCom);事件即可! 2017-09-12 0 0 分享 微博 QZONE 微信 shimp 赞同来自: 能详细一点吗?tem是哪个对象,我需要所有的都加载完成,谢谢 我的代码是 private  loadSk{ this.sk_5...

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

74. 分享:如何为spine(龙骨)动画添加CLICK事件! [ 74%]

...); })(); function startFun() { mFactory = new Templet(); mFactory.on(Event.COMPLETE, this, parseComplete); mFactory.loadAni("res/spine/spineRes2/goblins.sk"); } function parseComplete() { mArmature = mFactory.buildArmature(1); mArmature.x = 100; mArmature.y = 200; var rect=new Laya.Rectangle(-200,-2...

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

75. laya.utils.TimeLine [ 74%]

...当前点移动到目标点。 TimeLineEventEvent Summary Defined By  complete整个缓动结束的时候会调度TimeLine  label当缓动到达标签时会调度。TimeLineProperty Detailscalepropertypublic var scale:Number = 1 缩放动画播放的速度。totalproperty total:int  [read-...

来源: Laya2.0_api 发布时间: 20190513

76. laya.display.BitmapFont_API3.0 [ 74%]

...lock=true的资源。 Returns void Static loadFont loadFont(path: string, complete: Handler): void Defined in laya/display/BitmapFont.ts:33 通过指定位图字体文件路径,加载位图字体文件,加载完成后会自动解析。 Parameters path: string 位图字体文件的路径。 compl...

来源: Laya3.0_api 发布时间: 20231115

77. 解析sk资源报错 [ 73%]

...      _templet = new Templet();             _templet.on(Event.COMPLETE,this,parseComplete);             _templet.on(Event.ERROR,this,onError);             _templet.loadAni("res/role/1/left/left.sk");         }                  private function parseCo...

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

78. spine 播放错乱 [ 73%]

...); this.templet.loadAni("spine/10101001.json"); this.templet.on(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_社区 发布时间: 20210813

79. 加载成功要怎样判断呢? [ 73%]

...管是Laya.loader.load(url, onLoaded, ...) 还是Laya.loader.on(Event.COMPLETE, this, onLoaded); 加载失败都会到onLoaded,那怎么区分是不是加载成功? 2017-03-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 ...

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

80. 用Loader加载完atlas,然后使用animation播放问题 [ 73%]

...s._load.on(Laya.Event.ERROR, this, this.onError); this._load.on(Laya.Event.COMPLETE, this, this.loadComplete); this._load.load(this._data.url, Laya.Loader.ATLAS, true); 加载完成后 this._ani = new Animation(); this._ani.loadImages(这里传入解析好的urls) 会提示重复加载 为什么我...

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