Click or drag to resize

ColorLinearInterpolate Method (Color, Single)

Returns the result of the linear interpolation between this color and `to` by amount `weight`.

Namespace:  Godot
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public Color LinearInterpolate(
	Color to,
	float weight
)

Parameters

to
Type: GodotColor
The destination color for interpolation.
weight
Type: SystemSingle
A value on the range of 0.0 to 1.0, representing the amount of interpolation.

Return Value

Type: Color
The resulting color of the interpolation.
See Also