mixedreality/com.microsoft.mixedreality..../Core/Definitions/CameraSystem/MixedRealityCameraSettingsC...

80 lines
2.8 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.CameraSystem
{
/// <summary>
/// Defines the configuration for a camera settings provider.
/// </summary>
[Serializable]
public struct MixedRealityCameraSettingsConfiguration : IMixedRealityServiceConfiguration
{
[SerializeField]
[Tooltip("The concrete type of the camera settings provider.")]
[Implements(typeof(IMixedRealityCameraSettingsProvider), TypeGrouping.ByNamespaceFlat)]
private SystemType componentType;
/// <inheritdoc />
public SystemType ComponentType => componentType;
[SerializeField]
[Tooltip("The name of the camera settings provider.")]
private string componentName;
/// <inheritdoc />
public string ComponentName => componentName;
[SerializeField]
[Tooltip("The camera settings provider priority.")]
private uint priority;
/// <inheritdoc />
public uint Priority => priority;
[SerializeField]
[Tooltip("The platform(s) on which the camera settings provider is supported.")]
[EnumFlags]
private SupportedPlatforms runtimePlatform;
/// <inheritdoc />
public SupportedPlatforms RuntimePlatform => runtimePlatform;
[SerializeField]
private BaseCameraSettingsProfile settingsProfile;
/// <inheritdoc />
public BaseMixedRealityProfile Profile => settingsProfile;
/// <summary>
/// Camera settings specific configuration profile.
/// </summary>
public BaseCameraSettingsProfile SettingsProfile => settingsProfile;
/// <summary>
/// Constructor.
/// </summary>
/// <param name="componentType">The <see cref="Microsoft.MixedReality.Toolkit.Utilities.SystemType"/> of the provider.</param>
/// <param name="componentName">The friendly name of the provider.</param>
/// <param name="priority">The load priority of the provider.</param>
/// <param name="runtimePlatform">The runtime platform(s) supported by the provider.</param>
/// <param name="settingsProfile">The configuration profile for the provider.</param>
public MixedRealityCameraSettingsConfiguration(
SystemType componentType,
string componentName,
uint priority,
SupportedPlatforms runtimePlatform,
BaseCameraSettingsProfile configurationProfile)
{
this.componentType = componentType;
this.componentName = componentName;
this.priority = priority;
this.runtimePlatform = runtimePlatform;
this.settingsProfile = configurationProfile;
}
}
}