Radio Menu
Counterpart of the Radial Menu it emulates the Vehicle Radio menu multiple RadioItems to be added to the circle.
Constructor
public UIRadioMenu()
UIRadioMenu.New()
Parameters
Stations
This is the main List inside the menu, a list of RadioItems
public List<RadioItem> Stations { get; private set; }
menu.Stations = {}
Instructional Buttons
Like Radial Menu and UIMenu this menu allows adding and removing custom instructional buttons
public void AddInstructionalButton(InstructionalButton button){}
public void RemoveInstructionalButton(InstructionalButton button){}
public void RemoveInstructionalButton(int index){}
function UIRadioMenu:AddInstructionButton(button)
function UIRadioMenu:RemoveInstructionButton(button)
Current Selection
Gets or Sets the current selected item in the menu.
public int CurrentSelection {get; set;}
function UIRadioMenu:CurrentSelection(index)
Visible
Gets or Sets the visible state of the menu, if set to true
the menu will be visible and automatically drawn on screen.
public bool Visible {get;set;}
function UIRadioMenu:Visible(bool)
Animation Direction
The menu has animation opening and closing, you can choose between ZoomOut
and ZoomIn
public AnimationDirection AnimDirection = AnimationDirection.ZoomIn;
function UIRadioMenu:AnimDirection(direction)
Animation Duration
The time of exection for the animation where 1.0 means 1 second.
public float AnimationDuration = 1f;
function UIRadioMenu:AnimationDuration(time)
Functions
Add Station
Adds a station to the menu wheel.
public void AddStation(RadioItem station)
function UIRadioMenu:AddStation(station)
Events
Events are triggered on player interaction with the menu.
public delegate void MenuOpenedEvent(UIRadioMenu menu, dynamic data = null);
public delegate void MenuClosedEvent(UIRadioMenu menu);
public delegate void IndexChanged(int index);
public delegate void StationSelected(RadioItem item, int index);
OnMenuOpen = function(menu, data)
end
OnMenuClose = function(menu)
end
OnIndexChange = function(index)
end
OnStationSelect = function(segment, index)
end