Answers for "what does lerp do in unity"

C#
2

unity lerp

thisText.color = Color.Lerp(normalColour, noAlpha, (Time.time - startTime) / lifeTime);
Posted by: Guest on April-20-2021
0

how to lerp a value in unity

lerpValue = Mathf.Lerp(minValue, maxValue, interpolationPoint);
Posted by: Guest on July-31-2020

C# Answers by Framework

Browse Popular Code Answers by Language