interface Spatial {
    getAABB(): aabb;
    getTransform(): Transform;
    getWorldAABB(): aabb;
}

Implemented by

Methods

  • Returns an axis aligned bounding box which represents the bounds of a view around which a UI can be created

    Returns aabb

  • Returns a Transform which is used in manipulating the object in 3D space

    Returns Transform

  • Returns a world-space axis aligned bounding box which represents the bounds of a view around which a UI can be created

    Returns aabb