Color.operator *static operator * (a : Color, b : Color) : ColorDescriptionMultiplies two colors together. Each component is multiplied separately. static operator * (a : Color, b : float) : ColorDescriptionMultiplies color a by the float b. Each color component is scaled separately. static operator * (b : float, a : Color) : ColorDescriptionMultiplies color a by the float b. Each color component is scaled separately. |
