Files
FlaxEngine/Source/Engine/Scripting/Attributes/Editor/ExpandGroupsAttribute.cs

16 lines
507 B
C#

// Copyright (c) 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
{
}
}