Samarium Hello, I faced the next problem.
I want to show an animation of my hero both with some attack animation simultaneously.
I tried to achieve this by:
player.showAnimation(['hero', 'fire_bullet'], 'attack', true);
I can see hero animation, but fire_bullet unfortunately not.
When I replace it with:
player.showAnimation('fire_bullet', 'attack', true);
fire animation is perfectly animated.
I am using RPG JS v4 so it might be an issue.