Tri-Inspector/Editor.Extras/GroupDrawers/TriVerticalGroupDrawer.cs
2022-01-30 19:08:53 +03:00

16 lines
475 B
C#

using TriInspector;
using TriInspector.Elements;
using TriInspector.GroupDrawers;
[assembly: RegisterTriGroupDrawer(typeof(TriVerticalGroupDrawer))]
namespace TriInspector.GroupDrawers
{
public class TriVerticalGroupDrawer : TriGroupDrawer<DeclareVerticalGroupAttribute>
{
public override TriPropertyCollectionBaseElement CreateElement(DeclareVerticalGroupAttribute attribute)
{
return new TriVerticalGroupElement();
}
}
}