here's the example from the documentain
PIXI.Loader.shared.add("assets/spritesheet.json").load(setup);
function setup() {
let sheet = PIXI.Loader.shared.resources["assets/spritesheet.json"].spritesheet;
animatedSprite = new PIXI.AnimatedSprite(sheet.animations["image_sequence"]);
...
}
but I have a lot of image sequences some for walking some for jumping, but if I follow this example all the animations will be shown at once, so how to choose how many images?
THANKS