I’ve looked all around, and I know this is a fairly prevalent topic, but I haven’t found anything that can fix my problem.
GOAL: Show 2 different 2D animations at the same time, on top of one another
The question is, how do I do this? How can I show two animations at the same time? For an example, below is a small example sprite sheet (with 3 sprites haha) of a spaceship and the fire coming out of the back.
Let’s imagine the spaceship is an animation, PlayerMain, and is always showing (with the loop off). Then, the 2 sprite fire animation is set up as another animation, as PlayerMainJetAnim. See the link here for a screenshot of the example in the Animator window.
What I want to happen is that the spaceship is always shown. Then, when the user presses a certain key, the fire animation appears directly on top of the spaceship, making it look like the fire is coming out the back of the spaceship. You should see both, and theoretically, both animations would be running at the same time.
How can I do this? I’ve tried layers (as you can see in the animator window), I’ve tried messing with tons of settings, but the only thing I can get to happen is when the user presses the up key, the fire animation is playing, but the ship is gone… both aren’t happening at the same time. I’ve checked and tried answers from different questions here and everywhere, and nothing I try is working. Preferably, I would like to keep all the animation work in the animator window, and not have to play them through a animation play() method in code. (Note- I do set a boolean to true when the user presses the up key in the code, initiating the change of animation from PlayerMain to PlayerMainJetAnim. That works fine, and I’m fine with that, but don’t want to do any animation play() stuff in code if possible. If I have to, however, and there’s no other choice, that’s fine.) How can I get these to play at the same time?
Thanks for reading this and the help. Let me know if I need to clarify it more.
2nd Note- I’ve tried different combinations of the layers in the animator- and tried setting the Jets layer to additive, as you can see in the picture. Here is a screenshot of the jets layer.