大约有 8 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0026 秒)
...何使用换肤的方法 1、局部换肤-根据插槽索引换肤,对应Skeleton类下的replaceSlotSkinByIndex方法 我们从创建动画开始,一步步来操作 1-1 打开dragonbones官方示例Dragon动画,并准备好一张皮肤,这次我打算替换head头部,开发者也可...
来源: Laya_社区 发布时间: 20170324
...,替换的图片全在atlas里// 程序入口 class GameMain{ private m_skeleton : Laya.Skeleton; private m_templet : Laya.Templet; constructor() { Laya.init(1334,750,Laya.WebGL); this.m_templet = new Laya.Templet(); this.m_templet.on(Laya.Event.COMPLETE, this, this.parseComplete); this.m_templet....
来源: Laya_社区 发布时间: 20180126
spine 播放错乱 templet: Laya.SpineTemplet; skeleton: Laya.SpineSkeleton; index = 0; private startFun(): void { //创建动画模板 this.templet = new Laya.SpineTemplet(); this.templet.loadAni("spine/10101001.json"); this.templet.on(Laya.Event.COMPLETE, this, this.parseComplete); this.templet.o...
来源: Laya_社区 发布时间: 20210813
...of undefined at Matrix.__proto.copyTo (laya.core.js:4334) at Skeleton.__proto._createGraphics (laya.ani.js:4381) at Skeleton.__proto._update (laya.ani.js:4240) at TimerHandler.__proto.run (laya.core.js:9827) at Timer.__proto._update (laya.core.js:9560) at Ti...
来源: Laya_社区 发布时间: 20180619
Skeleton动画销毁之后依然占用内存 通过下面的方式切换动画发现内存一直增加,不知道是我的方法有问题还是引擎的bug,(中途切换了好几次动画) 附件 : --> 2020-09-17 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 ...
来源: Laya_社区 发布时间: 20200917
[0]Spine3.8.75报错:Error: Unsupported skeleton data, please export with a newer version of Spine. 我使用spine3.8.75导出的文件无法使用。代码是使用的2.12.2beta1引擎示例的源码。 var Browser = Laya.Browser; var WebGL = Laya.WebGL; var Stage = Laya.Stage; var Event = La...
来源: Laya_社区 发布时间: 20211013
...Laya.Event.CLICK, this, this.onImgClick); Laya.loader.load("res/atlas/comp/skeleton.atlas"); //创建动画模板 this.templet = new Laya.Templet(); this.templet.on(Laya.Event.COMPLETE, this, this.parseComplete); this.templet.on(Laya.Event.ERROR, this, this.onError); this.templet.loadAni("comp/skele...
来源: Laya_社区 发布时间: 20180905
...于使用spine切换动作后显示异常解决方法 例: var catSprite:Skeleton = new Skeleton(); this.catSprite.load(xxx,回调)--加载好使用spine或dragbones的文件 private function 回调(){ catSprite.showSkinByName("动作名") //最初使用这种方式显示 结果是图片乱跳 显...
来源: Laya_社区 发布时间: 20180614