PauseUpdateEventOfSky

Definition

PauseUpdateEventOfSky()

Description

This function pauses the script’s Update() event of sky object.

Example

function OnTriggerEnter(otherActorName)
    --nil means main character controller
    if otherActorName == nil then
          PauseUpdateEventOfSky()
    end
end

function OnTriggerStay(otherActorName)

end

function OnTriggerExit(otherActorName)

end
Assume that the above script is attached to a trigger named trigger1. Whenever the main character enters “trigger1”, script’s Update() event of sky object will be paused.
adminPauseUpdateEventOfSky