UIMenuSliderItem

image

A slider, a section of a progress item that slides in a predefined space.

  • It comes with Mom and Dad icons too, simply set Heritage value to true!
  • This item works with integer values only
  • You can specify the slider color.

Constructor

UIMenuSliderItem(string text)
UIMenuSliderItem(string text, string description)
UIMenuSliderItem(string text, string description, bool heritage)
UIMenuSliderItem(string text, string description, int max, int mult, int startVal, bool heritage)
UIMenuSliderItem(string text, string description, int max, int mult, int startVal, HudColor sliderColor, bool heritage = false)
function UIMenuSliderItem.New(Text, Max, Multiplier, Index, Heritage, Description, sliderColor, color, highlightColor, textColor, highlightedTextColor)

Parameters

SliderColor

Gets or Sets the slider color after initialization or on runtime.

HudColor SliderColor { get; set; }
sliderItem:SliderColor(color)

CurrentValue

Gets or Sets the current value or position of the slider.

int Value { get; set; }
sliderItem:Index(Index)

Events

OnSliderChanged

ItemSliderEvent OnSliderChanged(UIMenuSliderItem item, int newIndex)
sliderItem.OnSliderChanged = function(menu, item, newindex)
end

OnSliderSelected

For C# users, the item inherits UIMenuItem Activated event.

public event ItemActivatedEvent Activated
sliderItem.OnSliderSelected = function(menu, item, newindex)
end