public static float[] ToArray(this Color value) { return(new[] { value.r, value.g, value.b }); }
public static float[] Scale(this Color value, float scale) { return(new[] { value.r *scale, value.g *scale, value.b *scale }); }