Level Up Coding

Coding tutorials and news. The developer homepage gitconnected.com && skilled.dev && levelup.dev

Follow publication

Damage VFX Using Animated Sprites in Unity

--

Every time our Player loses a life, we should indicate this with VFX as well as our UI. For each life lost, we can “blow an engine” on each wing.

Let’s position these two damage sprites as child objects of our player.

Both will use the same animation and controller so let’s create one and access it from both game objects.

In our Player script we need to create a variable to access our game objects. We can use an array to store them, as we may also want to add more damage indicators in the future. In our TakeDamage method we can use a switch statement to run the code for each amount of lives, rather than the if statement we had checking if we were dead. In this, we can simply use .SetActive to turn on our gameobjects accordingly.

Now, as our live’s decrease, our ship will appear to take more damage.

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

No responses yet

Write a response