76 lines
2.7 KiB
C#
76 lines
2.7 KiB
C#
// 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;
|
||
}
|
||
} |