Search Results for

    Show / Hide Table of Contents

    Class VuforiaTargetBehavior

    A component that binds a generic Vuforia target with an entity.

    Inheritance
    object
    IdentifiableObject
    DependencyObject
    AttachableObject
    PrefabInstanceObject
    Component
    Behavior
    VuforiaTargetBehavior
    ImageTargetBehavior
    ObjectTargetBehavior
    VuMarkTargetBehavior
    Implements
    IDependencyObject
    Inherited Members
    Behavior.Family
    Behavior.UpdateOrder
    Component.Owner
    Component.Managers
    Component.ShouldBeActivated
    Component.Clone()
    Component.Attach(Entity)
    Component.OnLoaded()
    Component.OnActivated()
    Component.Start()
    Component.OnDeactivated()
    Component.OnDestroy()
    PrefabInstanceObject.PrefabSource
    PrefabInstanceObject.RefreshPrefab(Prefab)
    PrefabInstanceObject.PrefabElementId
    PrefabInstanceObject.IsPrefabInstance
    PrefabInstanceObject.IsMissingPrefabSource
    AttachableObject.AttachableStateChanged
    AttachableObject.IsEnabled
    AttachableObject.State
    AttachableObject.IsLoaded
    AttachableObject.IsAttached
    AttachableObject.IsActivated
    AttachableObject.IsStarted
    AttachableObject.IsDestroyed
    AttachableObject.Destroy()
    AttachableObject.DependencyBroken()
    DependencyObject.Dependencies
    DependencyObject.OnDependencyRemoved
    IdentifiableObject.Id
    IdentifiableObject.IdHasChanged(Guid)
    Namespace: Evergine.Vuforia
    Assembly: Evergine.Vuforia.dll
    Syntax
    public abstract class VuforiaTargetBehavior : Behavior, IDependencyObject

    Constructors

    VuforiaTargetBehavior()

    Initializes a new instance of the VuforiaTargetBehavior class.

    Declaration
    public VuforiaTargetBehavior()

    Fields

    vuforiaService

    The vuforia service.

    Declaration
    [BindService(true)]
    protected VuforiaService vuforiaService
    Field Value
    Type Description
    VuforiaService

    Properties

    AvailableTrackables

    Gets enumerable that contains the names of the trackables described by the dataset.

    Declaration
    public abstract IEnumerable<string> AvailableTrackables { get; }
    Property Value
    Type Description
    IEnumerable<string>

    IsStatic

    Gets or sets a value indicating whether the entity pose will only be set the first time the target is tracked. This is only used when Device tracking mode is active."/>.

    Declaration
    [RenderProperty(CustomPropertyName = "Is Static", Tooltip = "Indicates whether the entity pose will only be set the first time the target is tracked. This is only used when 'WorldCenterMode.Camera' tracking mode is active")]
    public bool IsStatic { get; set; }
    Property Value
    Type Description
    bool

    true if the entity pose will only be set the first time the target is tracked; otherwise, false.

    TargetName

    Gets or sets the trackable name that match with this entity.

    Declaration
    public string TargetName { get; set; }
    Property Value
    Type Description
    string

    TrackableResult

    Gets the current trackable result.

    Declaration
    public TrackableResult TrackableResult { get; }
    Property Value
    Type Description
    TrackableResult

    TrackableStatus

    Gets the trackable status.

    Declaration
    public TrackableStatus TrackableStatus { get; }
    Property Value
    Type Description
    TrackableStatus

    Methods

    OnAttached()

    Invoked when the object is attached to the system.

    Declaration
    protected override bool OnAttached()
    Returns
    Type Description
    bool

    True if all is OK.

    Overrides
    Behavior.OnAttached()

    OnDetach()

    Invoked when the object is detached.

    Declaration
    protected override void OnDetach()
    Overrides
    Behavior.OnDetach()

    Update(TimeSpan)

    Updates this instance.

    Declaration
    protected override void Update(TimeSpan gameTime)
    Parameters
    Type Name Description
    TimeSpan gameTime

    The game time.

    Overrides
    Behavior.Update(TimeSpan)
    Remarks

    This is only executed if the instance is active.

    Implements

    IDependencyObject

    Extension Methods

    ReflectionHelper.GetMemberAssembly(object)
    ReflectionHelper.GetTypeName(object)
    In this article
    Back to top
    Generated by DocFX