1. 程式人生 > >cocos-js 播放cocostudio製作的幀動畫

cocos-js 播放cocostudio製作的幀動畫

cocostudio製作的幀動畫有三個檔案  .ExportJson   .plist 和.png

程式碼:

ccs.armatureDataManager.addArmatureFileInfo(res.animation_json);
var layer =new cc.LayerColor(cc.color(255,255,255,255));
this.addChild(layer);
var wolfAnimation = new ccs.Armature("animation");//獲取載入的json檔案中的幀動畫物件
wolfAnimation.animation.play("Animation1"
);//播放幀動畫 wolfAnimation.setPosition(size.width/2,size.height/2); layer.addChild(wolfAnimation);