I have a spritesheet in which some cases, mostly “Standing” are only single images. However I want to uniformly treat these “singlets” the same way that I treat any animations -
new PIXI.AnimatedSprite( sheet.animations[poseName] );
But it looks like TexturePacker doesn’t automatically turn singlets into animations at the bottom of the JSON file. Can this be added in the future? I think this would be handy so you dont get stuck with some sort of edge case code breaking bug. Or is the problem that renderering engines don’t play well with single frame animations?
Thanks!