ColorSelect:SetColorWheelTexture(texture)
|
Sets the `Texture` object used to display the color picker's hue/saturation wheel.
|
ColorSelect:SetColorValueTexture(texture)
|
Sets the `Texture` object used to display the color picker's value slider.
|
ColorSelect:SetColorRGB(red, blue, green)
|
Sets the color picker's selected color by red, green and blue components.
|
ColorSelect:SetColorHSV(hue, saturation, value)
|
Sets the color picker's selected color by hue, saturation and value.
|
texture = ColorSelect:GetColorWheelThumbTexture()
|
Returns the texture for the selection indicator on the color picker's hue/saturation wheel.
|
texture = ColorSelect:GetColorWheelTexture()
|
Returns the texture for the color picker's hue/saturation wheel.
|
texture = ColorSelect:GetColorValueThumbTexture()
|
Returns the texture for the color picker's value slider thumb.
|
texture = ColorSelect:GetColorValueTexture()
|
Returns the texture for the color picker's value slider background.
|
red, blue, green = ColorSelect:GetColorRGB()
|
Returns the red, green and blue components of the currently selected color.
|
hue, saturation, value = ColorSelect:GetColorHSV()
|
Returns the hue, saturation and value of the currently selected color.
|