
单帧都是500x400,人物脚在图片中心
加载完图集后的Animation怎么获得400x500的宽高
另外Animation的getBounds()返回的数据浏览器和手机里是不一样的,咋回事?
手机:

网页:

代码:
ani.loadAtlas("res/atlas/hero_"+_model+".atlas",Handler.create(this,onLoad));
function onLoad():void
{
this.addChild(ani);
var bounds:Rectangle = ani.getBounds();
Control.showLog(bounds.toString());
}