UIMenuGridPanel

image

  • This panel comes 2 variants: full / horizontal.
  • It’s value is a Vector2 in Lua and a PointF in C#, both X and Y go from 0.0 to 1.0 this means that a value of 0.5 is the center of the grid.

Constructor

UIMenuGridPanel(string TopText, string LeftText, string RightText, string BottomText, PointF circlePosition) // full grid
UIMenuGridPanel(string LeftText, string RightText, PointF circlePosition) // half grid
UIMenuGridPanel.New(topText, leftText, rightText, bottomText, circlePosition, gridType) -- set gridType to 0 for the full grid or 1 for the horizontal grid

Parameters

Circle Position

Gets or Sets the current position of the circle in the grid.

PointF CirclePosition { get; set; }

Lua:

gridPanel.:CirclePosition(position)

Events

GridPanelChangedEvent

GridPanelChangedEvent OnGridPanelChange(UIMenuItem item, UIMenuGridPanel panel, PointF newPosition)
gridPanel.OnGridPanelChanged = function(item, panel, newPosition)