Guidelime

Guidelime

4M Downloads

Colors for different types of steps customizable

max-ri opened this issue ยท 1 comments

commented
commented

Just use the blizzard color picker for this should be enough

-- ColorPickerOkayButton
ColorPickerFrame = function() 
	local r, g, b = ColorPickerFrame:GetColorRGB()
	local a = 1 - OpacitySliderFrame:GetValue()
	
end
-- ColorPickerCancelButton
ColorPickerFrame.cancelFunc = function(previousValues)
	
end
-- Enable / Disable alpha slider
ColorPickerFrame.hasOpacity = true
-- Set alpha
ColorPickerFrame.opacity = 1
-- On Alpha change
ColorPickerFrame.opacityFunc = function()
	local a = 1 - OpacitySliderFrame:GetValue()
	
end
ColorPickerFrame:Show()