我不知道问题是画架错误还是我做错了什么(很可能)。当我使用 TexturePacker 对象制作动画时,在具有不同小数位数的数字之间的数组位置中的动画不会显示。(例如 9 到 10、99 到 100)
jsfiddle中的代码示例:
var fromTexturePacker = {
"animations": {
"0": [0],
"1": [1],
"2": [2],
"3": [3],
"4": [4],
"5": [5],
"6": [6],
"7": [7],
"8": [8],
"9": [9],
"10": [10],
}
}
var canvas = document.getElementById("canvas");
var stage = new createjs.Stage(canvas);
createjs.Ticker.addListener(stage);
var image = new Image();
image.src = "http://www.kadrmasconcepts.com/blog/wp-content/uploads/2011/05/robin.png";
var Animaciones = {
images: [image],
frames: {
width: 240,
height: 315,
regX: 120,
regY: 160
},
animations: {}
};
var anim = fromTexturePacker['animations'];
Animaciones.animations['go0to9'] = [anim['0'], anim['9']];
Animaciones.animations['go9to10'] = [anim['9'], anim['10']];
Animaciones.animations['go10to10'] = [anim['10'], anim['10']];
bird = new createjs.BitmapAnimation(new createjs.SpriteSheet(Animaciones));
bird.x = 150;
bird.y = 150;
bird.gotoAndPlay("go0to9");
stage.addChild(bird);