Blending.Blend
Static Method in Blending
Declaration
public static Color Blend(Color a, Color b, Blending.BlendFunction function)
Description
Blends two colors together using the given blend function.
Parameters
a | The base color. |
b | The blend color. |
function |
Returns
Color |
Overload
Declaration
public static Color Blend(this BlendMode blendMode, Color a, Color b)
Description
Blends two colors together using the specified blend mode.
Parameters
blendMode | The blend mode to use. |
a | The base color. |
b | The blend color. |
Returns
Color | The blended color. |