Definition
ResumeGame()
Description
This function resumes the game.
Example
function OnSelectMouseLButtonDown() PauseGame() end function OnSelectMouseRButtonDown() ResumeGame() end function OnSelectMouseEnter() end
Assume that the above script is attached to a button object named “button1”. Whenever the user left clicks the button “button1”, the game is paused. When the user right clicks the button “button1”, the game resumes.
ResumeGame