In this tutorial you'll learn how you can easily apply smoothing and randomness to smoothing by using Animation Curves or MinMaxCurves to achieve nonlinear interpolation on "lerp"s. We'll look at adding Smoothing to Vector3 Lerp, Quaternion.Lerp, Quaternion.Slerp, and more!
Lerping is one of the foundational things you need to know about in video game development! There are so many use cases for lerping it's impossible to name them all! Almost any time you want to rotate, move, or change a value over time, lerping is an option.
👨💻 As always, all code from this video is available on GitHub: https://github.com/llamacademy/advanced-lerping
🏷️Save 25% on the ultimate C# IDE: JetBrains Rider with code LLAMACADEMY: https://www.jetbrains.com/store/?section=personal&billing=yearly
📚 Resources
⚫ MinMaxCurve: https://docs.unity3d.com/ScriptReference/ParticleSystem.MinMaxCurve.html
⚫ Animation Curve: https://docs.unity3d.com/ScriptReference/AnimationCurve.html
🧡 Believe in LlamAcademy's mission and have received value from the videos? Here's how you can show your support:
🌟 Patreon: https://www.patreon.com/llamacademy
🌟 YouTube Member: https://www.youtube.com/channel/UCnWm6pMD38R1E2vCAByGb6w/join or click the Join button on any video
📚 Take my Unity ShaderGraph Course:
https://www.gamedev.tv/p/unity-shader-graph?affcode=45216_kuvg0bp7
👕 Get yourself some LlamAcademy merch: https://llamacademy.myspreadshop.com/
💸 Use my Affiliate Link for Humble Bundles https://humblebundleinc.sjv.io/9g4ak4
💸 Publisher Sale! 50% OFF an entire publisher's Assets! Publisher changes weekly! https://assetstore.unity.com/publisher-sale?aid=1101l9QvC (affiliate)
💸 Save up to 50% on NEW Assets: https://assetstore.unity.com/?new_sale=true&orderBy=1&aid=1101l9QvC (affiliate)
Some links may be affiliate links, which at no additional cost to you, gives me a small portion of the purchase.
Chapters:
00:00 Smoothing Introduction
01:12 Scene Overview
01:37 Fixed Time Vector3.Lerp with AnimationCurve
02:45 "Fixed Speed" Vector3.Lerp with AnimationCurve
03:39 Quaternion.Lerp & Quaternion.Slerp with AnimationCurve
04:44 Color.Lerp with AnimationCurve
05:00 Adding Randomness with MinMaxCurve
05:30 Fixed Time Vector3.Lerp with MinMaxCurve & "Gotchyas"
06:30 "Fixed Speed" Vector3.Lerp with MinMaxCurve
06:45 Quaternion.Lerp & Slerp with MinMaxCurve
07:00 Color.Lerp with MinMaxCurve
07:15 BONUS CONTENT! Vector3.Slerp
08:41 Closing Thoughts