Panel2D - MalisPierre/ModularGame GitHub Wiki
Panel2D: Item2D
ClassDescription:
This Class represent a Panel from the GUI. You can manage your UI elements from here.
Functions:
Inherit from Item2D, so look for other functions there.
Text2D CreateText(string Id, string Name)
int GetTextCount()
void DeleteAllTexts()
void DeleteTextById(string Id)
void DeleteTextByIndex(int Idx)
Button2D CreateButton(string Id, string Name)
Button2D FindButton(string Id)
int GetButtonCount()
void DeleteAllButtons()
void DeleteButtonById(string Id)
void DeleteButtonByIndex(int Idx)
Slider2D CreateSlider(string Id, string Name)
Slider2D FindSlider(string Id)
int GetSliderCount()
void DeleteAllSliders()
void DeleteSliderById(string Id)
void DeleteSliderByIndex(int Idx)