HideMenuCursor

Definition

HideMenuCursor()

Description

This function hides the menu cursor image. You can change the menu cursor image and its properties through the Current VScene Properties dialog (Tools > Current VScene Properties).

Example

function OnTriggerEnter(otherActorName)
    HideMenuCursor()
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 or a prefab instance that has dynamic physics is entered into this trigger, the menu cursor image will be hidden.
adminHideMenuCursor