// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using Microsoft.MixedReality.Toolkit.Utilities; using System; using UnityEngine; using UnityEngine.Serialization; namespace Microsoft.MixedReality.Toolkit.Input { /// /// Used to define a controller's visualization settings. /// [Serializable] public struct MixedRealityControllerVisualizationSetting { /// /// Constructor. /// /// Description of the Device. /// Controller Type to instantiate at runtime. /// The designated hand that the device is managing. /// The controller model prefab to be rendered. [Obsolete("This constructor doesn't need to be called directly.")] public MixedRealityControllerVisualizationSetting(string description, Type controllerType, Handedness handedness = Handedness.None, GameObject overrideModel = null) : this() { this.description = description; this.controllerType = new SystemType(controllerType); this.handedness = handedness; this.overrideModel = overrideModel; usePlatformModels = false; platformModelMaterial = null; } [SerializeField] private string description; /// /// Description of the Device. /// public string Description => description; [SerializeField] [Tooltip("Controller type to instantiate at runtime.")] [Implements(typeof(IMixedRealityController), TypeGrouping.ByNamespaceFlat)] private SystemType controllerType; /// /// Controller Type to instantiate at runtime. /// public SystemType ControllerType => controllerType; [SerializeField] [Tooltip("The designated hand that the device is managing.")] private Handedness handedness; /// /// The designated hand that the device is managing. /// public Handedness Handedness => handedness; [SerializeField] [Tooltip("Check to obtain controller models from the platform SDK. If left unchecked, the global models will be used.")] [FormerlySerializedAs("useDefaultModel")] private bool usePlatformModels; /// /// Check to obtain controller models from the platform SDK. If left unchecked, the global models will be used. /// public bool UsePlatformModels => usePlatformModels; [SerializeField] [Tooltip("The default controller model material when loading platform SDK controller models.")] [FormerlySerializedAs("defaultModelMaterial")] private Material platformModelMaterial; /// /// The default controller model material when loading platform SDK controller models. This value is used as a fallback if no controller definition exists with a custom material type. /// public Material PlatformModelMaterial => platformModelMaterial; [SerializeField] [Tooltip("An override model to display for this specific controller.")] private GameObject overrideModel; /// /// The controller model prefab to be rendered. /// public GameObject OverrideControllerModel => overrideModel; [SerializeField] [Tooltip("The concrete Controller Visualizer component to use on the rendered controller model.")] [Implements(typeof(IMixedRealityControllerVisualizer), TypeGrouping.ByNamespaceFlat)] private SystemType controllerVisualizationType; /// /// The concrete Controller Visualizer component to use on the rendered controller model /// public SystemType ControllerVisualizationType { get => controllerVisualizationType; private set => controllerVisualizationType = value; } } }