Unity/C# Challenge 12: Animating Sprites in Unity

Alec Oney
Jul 7, 2021

--

Challenge: Make our power-up animate while the game is running

Currently, our power-up is a single color, while we want it to constantly be changing:

Since we already have the power-up’s animation sprites, animating is easy! Simply select all the animation sprites:

add them to the animator for the sprite:

After adding an animator to the power-up’s components

Resulting in:

--

--

No responses yet