docs.unity3d.com
    Show / Hide Table of Contents

    Class ARFaceManager

    Creates, updates, and removes GameObjects with ARFace components under the ARSessionOrigin's trackablesParent.

    Inheritance
    Object
    SubsystemLifecycleManager<XRFaceSubsystem, XRFaceSubsystemDescriptor>
    ARTrackableManager<XRFaceSubsystem, XRFaceSubsystemDescriptor, XRFace, ARFace>
    ARFaceManager
    Inherited Members
    ARTrackableManager<XRFaceSubsystem, XRFaceSubsystemDescriptor, XRFace, ARFace>.trackables
    ARTrackableManager<XRFaceSubsystem, XRFaceSubsystemDescriptor, XRFace, ARFace>.sessionOrigin
    ARTrackableManager<XRFaceSubsystem, XRFaceSubsystemDescriptor, XRFace, ARFace>.gameObjectName
    ARTrackableManager<XRFaceSubsystem, XRFaceSubsystemDescriptor, XRFace, ARFace>.GetPrefab()
    ARTrackableManager<XRFaceSubsystem, XRFaceSubsystemDescriptor, XRFace, ARFace>.m_Trackables
    ARTrackableManager<XRFaceSubsystem, XRFaceSubsystemDescriptor, XRFace, ARFace>.m_PendingAdds
    ARTrackableManager<XRFaceSubsystem, XRFaceSubsystemDescriptor, XRFace, ARFace>.Awake()
    ARTrackableManager<XRFaceSubsystem, XRFaceSubsystemDescriptor, XRFace, ARFace>.Update()
    ARTrackableManager<XRFaceSubsystem, XRFaceSubsystemDescriptor, XRFace, ARFace>.OnTrackablesChanged(List<ARFace>, List<ARFace>, List<ARFace>)
    ARTrackableManager<XRFaceSubsystem, XRFaceSubsystemDescriptor, XRFace, ARFace>.OnCreateTrackable(ARFace)
    ARTrackableManager<XRFaceSubsystem, XRFaceSubsystemDescriptor, XRFace, ARFace>.OnAfterSetSessionRelativeData(ARFace, XRFace)
    ARTrackableManager<XRFaceSubsystem, XRFaceSubsystemDescriptor, XRFace, ARFace>.CreateTrackableImmediate(XRFace)
    ARTrackableManager<XRFaceSubsystem, XRFaceSubsystemDescriptor, XRFace, ARFace>.DestroyPendingTrackable(TrackableId)
    SubsystemLifecycleManager<XRFaceSubsystem, XRFaceSubsystemDescriptor>.subsystem
    SubsystemLifecycleManager<XRFaceSubsystem, XRFaceSubsystemDescriptor>.descriptor
    SubsystemLifecycleManager<XRFaceSubsystem, XRFaceSubsystemDescriptor>.CreateSubsystem()
    SubsystemLifecycleManager<XRFaceSubsystem, XRFaceSubsystemDescriptor>.CreateSubsystemIfNecessary()
    SubsystemLifecycleManager<XRFaceSubsystem, XRFaceSubsystemDescriptor>.OnEnable()
    SubsystemLifecycleManager<XRFaceSubsystem, XRFaceSubsystemDescriptor>.OnDisable()
    SubsystemLifecycleManager<XRFaceSubsystem, XRFaceSubsystemDescriptor>.GetActiveSubsystemInstance()
    SubsystemLifecycleManager<XRFaceSubsystem, XRFaceSubsystemDescriptor>.OnDestroy()
    SubsystemLifecycleManager<XRFaceSubsystem, XRFaceSubsystemDescriptor>.OnBeforeStart()
    SubsystemLifecycleManager<XRFaceSubsystem, XRFaceSubsystemDescriptor>.OnAfterStart()
    Namespace: UnityEngine.XR.ARFoundation
    Syntax
    public sealed class ARFaceManager : ARTrackableManager<XRFaceSubsystem, XRFaceSubsystemDescriptor, XRFace, ARFace>
    Remarks

    When enabled, this component subscribes to , , and . If this component is disabled, and there are no other subscribers to those events, face detection will be disabled on the device.

    Properties

    facePrefab

    Getter/setter for the Face Prefab.

    Declaration
    public GameObject facePrefab { get; set; }
    Property Value
    Type Description
    GameObject

    gameObjectName

    Declaration
    protected override string gameObjectName { get; }
    Property Value
    Type Description
    String
    Overrides
    UnityEngine.XR.ARFoundation.ARTrackableManager<XRFaceSubsystem, XRFaceSubsystemDescriptor, XRFace, UnityEngine.XR.ARFoundation.ARFace>.gameObjectName

    supported

    Not all devices support face tracking, even if the target platform generally does. Use this to check whether face tracking is supported at runtime.

    Declaration
    public bool supported { get; }
    Property Value
    Type Description
    Boolean

    Methods

    GetPrefab()

    Declaration
    protected override GameObject GetPrefab()
    Returns
    Type Description
    GameObject
    Overrides
    UnityEngine.XR.ARFoundation.ARTrackableManager<XRFaceSubsystem, XRFaceSubsystemDescriptor, XRFace, UnityEngine.XR.ARFoundation.ARFace>.GetPrefab()

    OnAfterSetSessionRelativeData(ARFace, XRFace)

    Declaration
    protected override void OnAfterSetSessionRelativeData(ARFace face, XRFace sessionRelativeData)
    Parameters
    Type Name Description
    ARFace face
    XRFace sessionRelativeData
    Overrides
    UnityEngine.XR.ARFoundation.ARTrackableManager<XRFaceSubsystem, XRFaceSubsystemDescriptor, XRFace, UnityEngine.XR.ARFoundation.ARFace>.OnAfterSetSessionRelativeData(UnityEngine.XR.ARFoundation.ARFace, XRFace)

    OnEnable()

    Declaration
    protected override void OnEnable()
    Overrides
    UnityEngine.XR.ARFoundation.SubsystemLifecycleManager<XRFaceSubsystem, XRFaceSubsystemDescriptor>.OnEnable()

    OnTrackablesChanged(List<ARFace>, List<ARFace>, List<ARFace>)

    Declaration
    protected override void OnTrackablesChanged(List<ARFace> added, List<ARFace> updated, List<ARFace> removed)
    Parameters
    Type Name Description
    List<ARFace> added
    List<ARFace> updated
    List<ARFace> removed
    Overrides
    UnityEngine.XR.ARFoundation.ARTrackableManager<XRFaceSubsystem, XRFaceSubsystemDescriptor, XRFace, UnityEngine.XR.ARFoundation.ARFace>.OnTrackablesChanged(List<UnityEngine.XR.ARFoundation.ARFace>, List<UnityEngine.XR.ARFoundation.ARFace>, List<UnityEngine.XR.ARFoundation.ARFace>)

    TryGetFace(TrackableId)

    Attempts to retrieve an ARFace.

    Declaration
    public ARFace TryGetFace(TrackableId faceId)
    Parameters
    Type Name Description
    TrackableId faceId

    The TrackableId associated with the ARFace.

    Returns
    Type Description
    ARFace

    The ARFaceif found. null otherwise.

    Events

    facesChanged

    Raised for each new ARFace detected in the environment.

    Declaration
    public event Action<ARFacesChangedEventArgs> facesChanged
    Event Type
    Type Description
    Action<ARFacesChangedEventArgs>
    Back to top Copyright © 2022 Unity Technologies
    Generated by DocFX
    on Friday, January 7, 2022
    Terms of use