-
Notifications
You must be signed in to change notification settings - Fork 7.1k
Closed
Description
I am using Phaser version 3.55.2 and there is a bug where only one animation exists when the createFromAseprite function is used consecutively.
For example:
const BodyTags = s.anims.createFromAseprite("Body");
const HeadTags = s.anims.createFromAseprite("Head");
console.log(BodyTags[0].frames[0], HeadTags[0].frames[0]);
When used like this, the output is as shown in the screenshot. How can I fix this issue?