Legacy Documentation: Version 5.6 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Color32.Lerp

public static Color32 Lerp(Color32 a, Color32 b, float t);

Description

Linearly interpolates between colors a and b by t.

t is clamped between 0 and 1. When t is 0 returns a. When t is 1 returns b.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Color32 colorWhite = Color.white; public Color32 colorBlack = Color.black; public Color32 lerpedColor; void Update() { lerpedColor = Color32.Lerp(colorWhite, colorBlack, Time.time); } }

See Also: LerpUnclamped.