WorldAnchor

class in UnityEngine.XR.WSA

/

Hereda de:Component

Cambiar al Manual

Descripción

The WorldAnchor component allows a GameObject's position to be locked in physical space.

For example, a cube arranged on top of a physical desk with a WorldAnchor applied will remain fixed even as an observer walks around the room. This overrides all manipulation of the GameObject's position and orientation. To move the GameObject, first remove the WorldAnchor and manipulate the Transform normally.

While it is generally recommended to use Destroy instead of DestroyImmediate, it's best to call DestroyImmediate on WorldAnchor objects. Doing so will let you manipulate the Transform of the GameObject including adding a new WorldAnchor.

Variables

isLocatedReturns true if this WorldAnchor is located (read only). A return of false typically indicates a loss of tracking.

Funciones Públicas

GetNativeSpatialAnchorPtrRetrieve a native pointer to the Windows.Perception.Spatial.SpatialAnchor COM object. This function calls IUnknown::AddRef on the pointer before returning it. The pointer must be released by calling IUnknown::Release.
SetNativeSpatialAnchorPtrAssigns the Windows.Perception.Spatial.SpatialAnchor COM pointer maintained by this WorldAnchor.

Events

OnTrackingChangedOnTrackingChanged notifies listeners when this object's tracking state changes.

Delegados

OnTrackingChangedDelegateEvent that is fired when this object's tracking state changes.

Miembros heredados

Variables

gameObjectEl game object que tiene este componente adjunto. Un componente siempre está adjunto a un game object.
tagEl tag de este game object.
transformThe Transform attached to this GameObject.
hideFlagsShould the object be hidden, saved with the Scene or modifiable by the user?
nameEl nombre del objeto.

Funciones Públicas

BroadcastMessageLlama al método denominado methodName de todos los MonoBehaviour en este game objecto en cualquiera de sus hijos.
CompareTag¿Este game object está etiquetado con tag?
GetComponentDevuelve un componente de tipo type si el game object tiene a alguno adjuntado, o null si no lo tiene.
GetComponentInChildrenRetorna el componente de tipo type en el GameObject o cualquiera de sus hijos utilizando depth first search (busqueda de profundidad).
GetComponentInParentRetorna el componente de tipo type en el GameObject o cualquiera de sus padres.
GetComponentsRetorna todos los componentes de tipo type en el GameObject.
GetComponentsInChildrenRetorna todos los componentes de tipo type en el GameObject o cualquiera de sus hijo.
GetComponentsInParentRetorna todos los componentes de tipo type en el GameObject o cualquiera de sus padres.
SendMessageLlama al método denominado methodName en cada MonoBehaviour de este game object.
SendMessageUpwardsLlama al método denominado methodName en todos los MonoBehaviour de este juego y en todos los ancestros del behaviour.
GetInstanceIDDevuelve el id de la instancia del objeto.
ToStringReturns the name of the GameObject.

Funciones Estáticas

DestroyElimina un gameobject, componente o asset.
DestroyImmediateDestroys the object obj immediately. You are strongly recommended to use Destroy instead.
DontDestroyOnLoadDo not destroy the target Object when loading a new Scene.
FindObjectOfTypeDevuelve el primer objeto activo cargado de tipo type.
FindObjectsOfTypeDevuelve una lista de todos los objetos activos cargados de tipo type.
InstantiateClona el objeto original y devuelve el clon.

Operadores

bool¿Existe el objeto?
operator !=Compare si dos objetos se refieren a un objeto diferente.
operator ==Compara dos referencias de objeto para ver si se refieren al mismo objeto.