mixedreality/com.microsoft.mixedreality..../Core/Definitions/MixedRealityInputDataProvid...

73 lines
2.5 KiB
C#
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 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;
}
}
}