16 lines
517 B
C#
16 lines
517 B
C#
// Copyright (c) 2012-2024 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
|
|
{
|
|
}
|
|
}
|