Tri-Inspector/Editor/TriCustomDrawer.cs

15 lines
384 B
C#
Raw Normal View History

2021-12-07 10:20:36 -05:00
namespace TriInspector
{
public abstract class TriCustomDrawer
{
internal int Order { get; set; }
2022-01-09 11:24:45 -05:00
internal bool ApplyOnArrayElement { get; set; }
2021-12-07 10:20:36 -05:00
public virtual string CanDraw(TriProperty property)
{
return null;
}
2021-12-07 10:20:36 -05:00
public abstract TriElement CreateElementInternal(TriProperty property, TriElement next);
}
}