Tri-Inspector/Editor/TriCustomDrawer.cs

15 lines
384 B
C#

namespace TriInspector
{
public abstract class TriCustomDrawer
{
internal int Order { get; set; }
internal bool ApplyOnArrayElement { get; set; }
public virtual string CanDraw(TriProperty property)
{
return null;
}
public abstract TriElement CreateElementInternal(TriProperty property, TriElement next);
}
}