DOMVolumeExtended

From Virtual World Web Wiki
Jump to: navigation, search

Represents a DOMVolume in JavaScript

Remarks [edit]

Properties

Point3D Size {get; set;} // Via attribution on DOMVolume
The size of the volume box

Events

OnEnter(ParticipantExtended who, DOMObjectExtended source)
Parameters:
who : The participant entering the volume
source : The volume being entered
Fires when a user enters this DOMVolume in world. Who is the Participant doing the entering.
OnLeave(ParticipantExtended who, DOMObjectExtended source)
Parameters:
who : The participant leaving the volume
source : The volume being left
Fires when a user leaves this DOMVolume in world. Who is the Participant doing the entering.
OnObjectEnter(DOMObjectExtended what, DOMObjectExtended source)
Parameters:
what : The DOMCollider doing the entering. Or if the collider was automatically added and not represented in the DOM, the object to which the collider is attached.
source : The volume being entered
Fires when a collider (that is not another participant, see OnEnter instead) enters this DOMVolume in world. 'What' is the object or DOMCollider doing the entering.
OnObjectLeave(DOMObjectExtended what, DOMObjectExtended source)
Parameters:
what : The DOMCollider doing the leaving. Or if the collider was automatically added and not represented in the DOM, the object to which the collider is attached.
source : The volume being left
Fires when a collider (that is not another participant, see OnLeave instead) leaves this DOMVolume in world. 'What' is the object or DOMCollider doing the leaving.