mixedreality/com.microsoft.mixedreality..../Core/Definitions/BaseMixedRealityProfile.cs

23 lines
620 B
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
using UnityEngine;
namespace Microsoft.MixedReality.Toolkit
{
/// <summary>
/// Base abstract class for all Mixed Reality profile configurations.
/// Extends ScriptableObject and used as a property container to initialize MRTK services.
/// </summary>
[Serializable]
public abstract class BaseMixedRealityProfile : ScriptableObject
{
[SerializeField]
[HideInInspector]
private bool isCustomProfile = true;
internal bool IsCustomProfile => isCustomProfile;
}
}