Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ColorLerp_BlackToWhite()

static Color Terraria.DelegateMethods.ColorLerp_BlackToWhite ( float percent)
inlinestatic

Definition at line 368 of file DelegateMethods.cs.

369 {
370 return Color.Lerp(Color.Black, Color.White, percent);
371 }
static Color Lerp(Color value1, Color value2, float amount)
Definition Color.cs:491

References Microsoft.Xna.Framework.Color.Black, Microsoft.Xna.Framework.Color.Lerp(), and Microsoft.Xna.Framework.Color.White.