mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 08:18:49 -05:00
16 lines
475 B
C#
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();
|
|
}
|
|
}
|
|
} |