mixedreality/com.microsoft.mixedreality..../Core/Definitions/MixedRealityServiceConfigur...

76 lines
2.7 KiB
C#
Raw Permalink 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
{
/// <summary>
/// Defines a system, feature, or manager to be registered with as a <see cref="IMixedRealityExtensionService"/> on startup.
/// </summary>
[Serializable]
public struct MixedRealityServiceConfiguration : IMixedRealityServiceConfiguration
{
/// <summary>
/// Constructor.
/// </summary>
/// <param name="componentType">The concrete type for the system, feature or manager.</param>
/// <param name="componentName">The simple, human readable name for the system, feature, or manager.</param>
/// <param name="priority">The priority this system, feature, or manager will be initialized in.</param>
/// <param name="runtimePlatform">The runtime platform(s) to run this system, feature, or manager on.</param>
/// <param name="configurationProfile">The configuration profile for the service.</param>
public MixedRealityServiceConfiguration(
SystemType componentType,
string componentName,
uint priority,
SupportedPlatforms runtimePlatform,
BaseMixedRealityProfile configurationProfile)
{
this.componentType = componentType;
this.componentName = componentName;
this.priority = priority;
this.runtimePlatform = runtimePlatform;
this.configurationProfile = configurationProfile;
}
[SerializeField]
[Implements(typeof(IMixedRealityExtensionService), 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;
[EnumFlags]
[SerializeField]
private SupportedPlatforms runtimePlatform;
/// <inheritdoc />
public SupportedPlatforms RuntimePlatform => runtimePlatform;
[SerializeField]
private BaseMixedRealityProfile configurationProfile;
/// <inheritdoc />
public BaseMixedRealityProfile Profile => configurationProfile;
/// <summary>
/// The configuration profile for the service.
/// </summary>
[Obsolete("Use the Profile property instead.")]
public BaseMixedRealityProfile ConfigurationProfile => configurationProfile;
}
}