Bake Your Animations to Greatly Improve Performance...For Some Use Cases #shorts




Published: 10 Nov 2022

In this Unity tutorial you will learn how to bake animations as a series of "snapshots" of meshes. These snapshots can be taken at a configurable framerate that suits your game.


The concept here is attacking a similar problem as Animation Instancing: https://blog.unity.com/technology/animation-instancing-instancing-for-skinnedmeshrenderer, but is still handled by the CPU and does not require any "shader magic" to manipulate the vertices.

It also does not reduce the Draw Calls, as Animation Instancing will do. Instead, this approaches the problem by resolving the "CPU Skinning" taking up a lot of CPU time on the main Unity thread to improve FPS.


This can be taken one step further to batch all the meshes into a single draw call per material via Graphics.DrawMeshInstanced(): https://docs.unity3d.com/ScriptReference/Graphics.DrawMeshInstanced.html

Strangely, with my initial attempt, the performance was actually worse than what is implemented here. I didn't have time to dive into that and the performance here was "good enough" for my use case.


👨‍💻 As always, the full project code is available on GitHub: https://github.com/llamacademy/baked-animation-meshes


📚 Resources

⚫ Bake Skinned Mesh Renderer Mesh: https://docs.unity3d.com/ScriptReference/SkinnedMeshRenderer.BakeMesh.html

⚫ Graphics Draw Mesh Instanced: https://docs.unity3d.com/ScriptReference/Graphics.DrawMeshInstanced.html /

⚫ Animator Play: https://docs.unity3d.com/ScriptReference/Animator.Play.html

⚫ Animator Update: https://docs.unity3d.com/ScriptReference/Animator.Update.html


📱 Let's stay connected

YouTube: https://youtube.com/c/LlamAcademy

Patreon: https://www.patreon.com/llamacademy

Facebook: https://facebook.com/LlamAcademyOfficial

Twitter: https://twitter.com/TheLlamAcademy

TikTok: https://tiktok.com/@LlamAcademy

Instagram: https://instagram.com/LlamAcademy


----


Believe in LlamAcademy's mission and have received value from the videos? Consider becoming a Patreon supporter: https://www.patreon.com/llamacademy


----

Most tutorials come from knowledge gained making https://survival.llama.software Llama Survival - a top-down zombie survival shooter for Android and iOS.

I also have some Unity Assets: https://assetstore.unity.com/publishers/22409?_aid=1101l9QvC

Some links may be affiliate links, which at no additional cost to you, gives me a small portion of the purchase.


Connect on Social Media

Some links may be affiliate links, which at no additional cost to you, gives LlamAcademy a small portion of the purchase.