73 lines
2.5 KiB
C#
73 lines
2.5 KiB
C#
// Copyright (c) Microsoft Corporation.
|
||
// Licensed under the MIT License.
|
||
|
||
using Microsoft.MixedReality.Toolkit.Utilities;
|
||
using System;
|
||
using UnityEngine;
|
||
|
||
namespace Microsoft.MixedReality.Toolkit.Input
|
||
{
|
||
[Serializable]
|
||
public struct MixedRealityInputDataProviderConfiguration : IMixedRealityServiceConfiguration
|
||
{
|
||
[SerializeField]
|
||
[Implements(typeof(IMixedRealityInputDeviceManager), TypeGrouping.ByNamespaceFlat)]
|
||
private SystemType componentType;
|
||
|
||
/// <inheritdoc />
|
||
public SystemType ComponentType => componentType;
|
||
|
||
[SerializeField]
|
||
private string componentName;
|
||
|
||
/// <inheritdoc />
|
||
public string ComponentName => componentName;
|
||
|
||
[SerializeField]
|
||
private uint priority;
|
||
|
||
/// <inheritdoc />
|
||
public uint Priority => priority;
|
||
|
||
[SerializeField]
|
||
[EnumFlags]
|
||
private SupportedPlatforms runtimePlatform;
|
||
|
||
/// <inheritdoc />
|
||
public SupportedPlatforms RuntimePlatform => runtimePlatform;
|
||
|
||
[SerializeField]
|
||
private BaseMixedRealityProfile deviceManagerProfile;
|
||
|
||
/// <inheritdoc />
|
||
public BaseMixedRealityProfile Profile => deviceManagerProfile;
|
||
|
||
/// <summary>
|
||
/// Device manager specific configuration profile.
|
||
/// </summary>
|
||
[Obsolete("Use the Profile property instead.")]
|
||
public BaseMixedRealityProfile DeviceManagerProfile => deviceManagerProfile;
|
||
|
||
/// <summary>
|
||
/// Constructor.
|
||
/// </summary>
|
||
/// <param name="componentType">The <see cref="Microsoft.MixedReality.Toolkit.Utilities.SystemType"/> of the data provider.</param>
|
||
/// <param name="componentName">The friendly name of the data provider.</param>
|
||
/// <param name="priority">The load priority of the data provider.</param>
|
||
/// <param name="runtimePlatform">The runtime platform(s) supported by the data provider.</param>
|
||
/// <param name="profile">The configuration profile for the data provider.</param>
|
||
public MixedRealityInputDataProviderConfiguration(
|
||
SystemType componentType,
|
||
string componentName,
|
||
uint priority,
|
||
SupportedPlatforms runtimePlatform,
|
||
BaseMixedRealityProfile profile)
|
||
{
|
||
this.componentType = componentType;
|
||
this.componentName = componentName;
|
||
this.priority = priority;
|
||
this.runtimePlatform = runtimePlatform;
|
||
deviceManagerProfile = profile;
|
||
}
|
||
}
|
||
} |