RSS

Среда, 24.04.2024, 06:40
Главная » WoW API » API Виджеты »

Выбор цвета

[ Добавить запись ]

В категории материалов: 12
Показано материалов: 1-12

Название Описание
ColorSelect:SetColorWheelThumbTexture(texture) or ColorSelect:SetColorWheelThumbTexture("filename") Sets the texture for the selection indicator on the color picker's hue/saturation wheel.
ColorSelect:SetColorWheelTexture(texture) Sets the `Texture` object used to display the color picker's hue/saturation wheel.
ColorSelect:SetColorValueThumbTexture(texture) or ColorSelect:SetColorValueThumbTexture("filename") Sets the texture for the color picker's value slider thumb.
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.