Definition
PauseUpdateEventOfMainCharacter()
Description
This function pauses the script’s Update() event of main character.
Example
function OnTriggerEnter(otherActorName) --nil means main character controller if otherActorName == nil then PauseUpdateEventOfMainCharacter() 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 main character will be paused.
PauseUpdateEventOfMainCharacter