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