using TriInspector; using TriInspector.Drawers; using TriInspector.Utilities; using UnityEngine; [assembly: RegisterTriAttributeDrawer(typeof(IndentDrawer), TriDrawerOrder.Decorator)] namespace TriInspector.Drawers { public class IndentDrawer : TriAttributeDrawer { public override void OnGUI(Rect position, TriProperty property, TriElement next) { using (var indentedRectScope = TriGuiHelper.PushIndentedRect(position, Attribute.Indent)) { next.OnGUI(indentedRectScope.IndentedRect); } } } }