Click or drag to resize
ColorHSVLerp Method
Linearly interpolate the two specified Colors by the specified amount in HSV space.

Namespace: Candlelight
Assembly: Assembly-CSharp-firstpass (in Assembly-CSharp-firstpass.dll) Version: 0.0.0.0
Syntax
C#
public static Color Lerp(
	Color color1,
	Color color2,
	float t
)

Parameters

color1
Type: Color
The first Color.
color2
Type: Color
The second Color.
t
Type: SystemSingle
A normalized parameter value [0, 1].

Return Value

Type: Color
A Color interpolated between the two specified values.
See Also