Item2D_Delete - MalisPierre/ModularGame GitHub Wiki
void Item2D.Delete()
Description:
Delete Destroy Permanently the UI Item from the GUI.
Parameters:
Returns:
Code Example:
function DestroyText()
MyPanel = Framework.UserInterface_2D.FindPanel("MyPanelId")
MyText = MyPanel.FindText("MyTextId")
MyText.Delete()
end