UIMenuColorPanel
The first of the panels we are gonna see now is the Color panel.
It comes in 3 different color templates:
- Makeup colors (64 colors for make up palette)
- Hair colors (64 colors for hair palette)
- Custom colors (customizable number of colors decided by the developer)
Constructor
UIMenuColorPanel(string title, ColorPanelType ColorType, int startIndex = 0) // for the predefined palettes
UIMenuColorPanel(string title, List<SColor> colors, int startIndex = 0) // for the customizable colors
UIMenuColorPanel.New(title, colorType, startIndex, colors) -- colors is nil if using predefined palettes
The optional colors
parameter is a list of SColor instances allowing devs to input HUD colors and / or custom ARGB colors in the same list.
Parameters
CurrentSelection
Gets or Sets the panel current color selection
int CurrentSelection{ get; set; }
colorPanel:CurrentSelection(new_value)
Events
ColorPanelChangedEvent
ColorPanelChangedEvent OnColorPanelChange(UIMenuItem parentItem, UIMenuColorPanel panel, int newValue)
colorPanel.OnColorPanelChanged = function(item, panel, newindex)
end