Files
FlaxEngine/Source/Engine/Scripting/Attributes/Editor/ExpandGroupsAttribute.cs
2023-01-10 15:29:37 +01:00

16 lines
517 B
C#

// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
using System;
namespace FlaxEngine
{
/// <summary>
/// Marks the item to be visible in editor by expanding all the container groups in the upper hierarchy.
/// </summary>
/// <seealso cref="System.Attribute" />
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Delegate | AttributeTargets.Event | AttributeTargets.Method)]
public sealed class ExpandGroupsAttribute : Attribute
{
}
}