Item2D_Show - MalisPierre/ModularGame GitHub Wiki
Description:
Show Show the UI Item if Hide has been called before)
Parameters:
- Void
Returns:
- Void
Code Example:
function HidePanel()
MyPanel = Framework.UserInterface_2D.FindPanel("MyPanelId")
MyPanel.Hide()
end
function UnhidePanel()
MyPanel = Framework.UserInterface_2D.FindPanel("MyPanelId")
MyPanel.Show()
end