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

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

1. 分享:Dragonbones/Spine的换肤操作 [ 100%]

...oid { skeleton=templete.buildArmature(1);//创建动画,类型:1 支持换装 skeleton.pos(150,250);//动画位置 skeleton.play(0,true);//动画播放,从0帧开始,不断循环播放 skeleton.scale(0.5,0.5);//动画缩放为原始状态的二分之一 Laya.stage.addChild(skeleton);//添加...

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

2. 分享:Skeleton下Event.LABLE('label')事件的使用 [ 93%]

...unction parseComplete(fac:Templet):void { //创建模式为1,可以启用换装 mArmature = mFactory.buildArmature(1); mArmature.x = mStartX; mArmature.y = mStartY; mArmature.scale(0.5, 0.5); Laya.stage.addChild(mArmature); mArmature.on(Event.LABEL, this, onEvent); mArmature.on(Event.STOPPED, this...

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

3. 分享:销毁龙骨动画! [ 83%]

...unction parseComplete(fac:Templet):void { //创建模式为1,可以启用换装 mArmature = mFactory.buildArmature(0); mArmature.x = 400; mArmature.y = 500; mArmature.scale(0.5, 0.5); Laya.stage.addChild(mArmature); mArmature.on(Event.STOPPED, this, completeHandler); play(); } private function com...

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