码迷,mamicode.com
首页 > 其他好文 > 详细

cocos creator学习--骨骼动画入门教程

时间:2018-03-09 17:56:54      阅读:4200      评论:0      收藏:0      [点我收藏+]

标签:入门   hand   etc   xtu   打开   nload   gpo   学习   obj   

参考:Mark_Liu--cocos creator--DragonBones 骨骼动画入门

       1.首先在网上下载dragonBones 的文件解压后有三个文件

  技术分享图片

  2.将文件夹放入cocos creator,

  技术分享图片

  3.新建一个空结点并添加渲染组件dragonBones,新建一个js文件,将js文件和节点绑定。将资源的两个json文件放入dragonBones对应的框中

  技术分享图片

  4.查看SwordsMan的json文件,搜索  gotoAndPlay  ,该关键字对应的就是动作名称

  5.打开js文件,写入代码

  


cc.Class({
extends: cc.Component,

properties: {
// foo: {
// default: null, // The default value will be used only when the component attaching
// to a node for the first time
// url: cc.Texture2D, // optional, default is typeof default
// serializable: true, // optional, default is true
// visible: true, // optional, default is true
// displayName: ‘Foo‘, // optional
// readonly: false, // optional, default is false
// },
// ...
},

// use this for initialization
onLoad: function () {
this.getArmature();
},

// called every frame, uncomment this function to activate update callback
// update: function (dt) {

// },
getArmature:function(){
//获取 ArmatureDisplay
this._armatureDisPlay = this.getComponent(dragonBones.ArmatureDisplay)
//获取 Armatrue
this._armature = this._armatureDisPlay.armature()
//添加动画监听
this._armatureDisPlay.addEventListener(dragonBones.EventObject.FADE_IN_COMPLETE, this.animationEventHandler, this)
this._armatureDisPlay.addEventListener(dragonBones.EventObject.FADE_OUT_COMPLETE, this.animationEventHandler, this)
this.attack();
},
attack:function(){
//动画执行方式一
this._armature.animation.fadeIn(‘attack1‘, -1, -1, 0, ‘hit‘);
},
attack2:function(){
//动画执行方式二
this._armatureDisPlay.playAnimation(‘attack2‘, 1);
},
animationEventHandler: function animationEventHandler(event) {
if (event.type == dragonBones.EventObject.FADE_IN_COMPLETE) {
cc.log(event.detail.animationName + ‘ fade in complete‘);
} else if (event.type == dragonBones.EventObject.FADE_OUT_COMPLETE) {
cc.log(event.detail.animationName + ‘ fade out complete‘);
}
}
});
 

其中的‘attack1‘,‘attack2‘,均可换为动作名称。

cocos creator学习--骨骼动画入门教程

标签:入门   hand   etc   xtu   打开   nload   gpo   学习   obj   

原文地址:https://www.cnblogs.com/zuhaoran/p/8534870.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!