// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) VRMADA, All rights reserved. // // -------------------------------------------------------------------------------------------------------------------- using System; using UltimateXR.Core; namespace UltimateXR.Devices.Integrations.HTC { /// /// Tracking for HTC Vive Focus 3 controllers using WaveXR SDK's UnityXR support. /// public class UxrHtcViveFocus3Tracking : UxrUnityXRControllerTracking { #region Public Overrides UxrControllerTracking /// public override Type RelatedControllerInputType => typeof(UxrHtcViveFocus3Input); #endregion #region Public Overrides UxrTrackingDevice /// public override string SDKDependency => UxrConstants.SdkWaveXR; #endregion } }