mixedreality/com.microsoft.mixedreality..../Core/Definitions/MixedRealitySpatialObserver...

73 lines
2.5 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.SpatialAwareness
{
[Serializable]
public struct MixedRealitySpatialObserverConfiguration : IMixedRealityServiceConfiguration
{
[SerializeField]
[Implements(typeof(IMixedRealitySpatialAwarenessObserver), 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 BaseSpatialAwarenessObserverProfile observerProfile;
/// <inheritdoc />
public BaseMixedRealityProfile Profile => observerProfile;
/// <summary>
/// Spatial Observer specific configuration profile.
/// </summary>
public BaseSpatialAwarenessObserverProfile ObserverProfile => observerProfile;
/// <summary>
/// Constructor.
/// </summary>
/// <param name="componentType">The <see cref="Microsoft.MixedReality.Toolkit.Utilities.SystemType"/> of the observer.</param>
/// <param name="componentName">The friendly name of the observer.</param>
/// <param name="priority">The load priority of the observer.</param>
/// <param name="runtimePlatform">The runtime platform(s) supported by the observer.</param>
/// <param name="configurationProfile">The configuration profile for the observer.</param>
public MixedRealitySpatialObserverConfiguration(
SystemType componentType,
string componentName,
uint priority,
SupportedPlatforms runtimePlatform,
BaseSpatialAwarenessObserverProfile configurationProfile)
{
this.componentType = componentType;
this.componentName = componentName;
this.priority = priority;
this.runtimePlatform = runtimePlatform;
this.observerProfile = configurationProfile;
}
}
}