Skip to main content

Events

Visionary Render can automatically generate common scripts using Events. To create an Event, right-click on a node in the tree and select Create > Event from the context menu. A default Key Press Event will be added to your scene as in the image below.

An Event consists of an EventHandler node with a child EventScript node. To edit the script, show the properties of the EventHandler node and click on the Script cell in the Action column. This will open the script in the Script Editor.

tip

Visionary Render also provides a drag and drop interface to automatically generate basic script actions. These are covered in the Visionary Render Manual.

Guards

Guards permit you to set an extra condition to be met before a script is executed. A Guard may be one of the following:

  • A key on the keyboard (modifiers can be used, e.g. Ctrl, Alt, Shift).
  • A time value in seconds.
  • An Assembly.

Registers

Registers are global variables that can be accessed from your scripts. They appear as an autocomplete list when you type _ into the Script Editor. The following table describes the available registers:

RegisterTypeDescription
__EventvrnodeThe event node that was triggered (available in all events).
__GesturestringThe name of the gesture that was made.
__HandbooleanThe hand that triggered the event (right hand = true, left hand = false).
__KeyCodenumberThe value of the key that was pressed. Tracker buttons start at 1000, mouse buttons start at 2000.
__KeyStatenumberWhether the key in __KeyCode was pressed or released (1 = pressed).
__OthervrnodeEvent specific node.
__PosestringThe name of the pose that was made.
__PoseStatebooleanThe state of the pose (entered = true, exited = false).
__ScriptvrnodeThe script node containing the code being executed. This is available in all events.
__SelfvrnodeThe node that the event node is attached to (e.g. an Assembly). This is available in all events.
__TimenumberThe total number of seconds since the application started. This is available in all events.
__TimeDeltanumberThe time in seconds since the last call to the event.
__UservrnodeThe user who triggered the event. This is available in all events.

Event Types

There are various types of event that can trigger a script to execute. The table below lists the available events, and which event-specific registers are set. References to "the node" refer to the node to which the EventHandler is attached. The following types of event can be fired:

EventRegistersDescription
Activate__OtherFired when vrActivate is called. The caller of vrActivate can set the value of __Other to whatever is required inside this event. It is also triggered by double clicking on some node types in the tree.
Break__OtherFired when two objects stop touching each other in the scene. __Self is this object, __Other is the object that it touched. The guard condition can be set to an Assembly to only fire Break events for that Assembly instead of any node in the scene. Note: you’ll need to add a Collision node to __Self for this event to be fired.
ClickFired when a 3D GUI item receives a full click (i.e. a press followed by a release).
CreateFired when the node is created, loaded from file, or when the event script is compiled.
Double ClickFired when a 3D GUI item receives a double click.
EnterFired when a fly-to operation arrives at the node.
Gesture Activated__GestureFired when a gesture is made that matches one of the recorded ones.
Key Press__KeyCode, __KeyStateFired when a key on the keyboard is pressed, or the mouse is clicked, or a tracker button is pressed.
Key Release__KeyCode, __KeyStateFired when a key, mouse, or tracker button is released.
LeaveFired when a subsequent fly-to operation flies somewhere else.
MoveFired when an assembly is moved in the scene.
Pose Entered__Pose, __PoseStateFired when a pose is made.
Pose Left__Pose, __PoseStateFired when a pose is left.
PressFired when a 3D GUI item is pressed (i.e. the cursor is held down).
ReleaseFired when a 3D GUI item is released.
RenameFired when the node is renamed.
SequenceFired when the sequencer reaches an event frame.
Time Step__TimeDeltaFired every frame.
ToggleFired when a 3D GUI item toggle state changes.
Touch__OtherFired when two objects touch each other in the scene. __Self is this object, __Other is the object that it touched. The guard condition can be set to an Assembly to only fire Touch events for that Assembly instead of any node in the scene. Note: you’ll need to add a Collision node to __Self for this event to be fired.
View Deselect__OtherFired when a node is deselected. __Other contains the view selection node containing the selection. Note: selecting in the Scenes or Developer tree will fire this event twice (once for each view, as the selection is synchronised).
View Select__OtherFired when a node is selected. __Other contains the view selection node containing the selection. Note: selecting in the Scenes or Developer tree will fire this event twice (once for each view, as the selection is synchronised).
warning

Execution order is undefined for events that are fired together on the same node. The only exception is that Create events are executed before other types of event.