mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 16:28:23 -05:00
19 lines
540 B
C#
19 lines
540 B
C#
|
using TriInspector;
|
|||
|
using TriInspector.Drawers;
|
|||
|
using TriInspector.Utilities;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
[assembly: RegisterTriDrawer(typeof(IndentDrawer), TriDrawerOrder.Decorator)]
|
|||
|
|
|||
|
namespace TriInspector.Drawers
|
|||
|
{
|
|||
|
public class IndentDrawer : TriAttributeDrawer<IndentAttribute>
|
|||
|
{
|
|||
|
public override void OnGUI(Rect position, TriProperty property, TriElement next)
|
|||
|
{
|
|||
|
TriGuiHelper.PushIndentLevel(Attribute.Indent);
|
|||
|
next.OnGUI(position);
|
|||
|
TriGuiHelper.PopIndentLevel();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|