41 lines
1.5 KiB
C#
41 lines
1.5 KiB
C#
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
using Microsoft.MixedReality.Toolkit.Utilities;
|
|
#if WINDOWS_UWP && !ENABLE_IL2CPP
|
|
using Microsoft.MixedReality.Toolkit;
|
|
#endif // WINDOWS_UWP && !ENABLE_IL2CPP
|
|
using System;
|
|
|
|
namespace Microsoft.MixedReality.Toolkit
|
|
{
|
|
/// <summary>
|
|
/// Constraint that allows selection of classes that extend a specific class when
|
|
/// selecting a <see cref="Utilities.SystemType"/> with the Unity inspector.
|
|
/// </summary>
|
|
public sealed class ExtendsAttribute : SystemTypeAttribute
|
|
{
|
|
/// <summary>
|
|
/// Gets the type of class that selectable classes must derive from.
|
|
/// </summary>
|
|
public Type BaseType { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ExtendsAttribute"/> class.
|
|
/// </summary>
|
|
/// <param name="baseType">Type of class that selectable classes must derive from.</param>
|
|
/// <param name="grouping">Gets or sets grouping of selectable classes. Defaults to <see cref="Utilities.TypeGrouping.ByNamespaceFlat"/> unless explicitly specified.</param>
|
|
public ExtendsAttribute(Type baseType, TypeGrouping grouping) : base(baseType, grouping)
|
|
{
|
|
BaseType = baseType;
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public override bool IsConstraintSatisfied(Type type)
|
|
{
|
|
return base.IsConstraintSatisfied(type) &&
|
|
BaseType.IsAssignableFrom(type) &&
|
|
type != BaseType;
|
|
}
|
|
}
|
|
} |