ResumePhysics

Definition

ResumePhysics()

Description

This function resumes the physics.

Example

function OnSelectMouseLButtonDown()
    PausePhysics()
end

function OnSelectMouseRButtonDown()
    ResumePhysics()
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”, physics is paused. When the user right clicks the button “button1”, physics resumes.
adminResumePhysics