Exemplo n.º 1
0
 internal void DrawPostIconContent(Rect iconRect)
 {
     if (Editor.OnPostIconGUI != null)
     {
         Rect drawRect = iconRect;
         drawRect.x      = drawRect.xMax - 16f + 4f;
         drawRect.y      = drawRect.yMax - 16f + 1f;
         drawRect.width  = 16f;
         drawRect.height = 16f;
         Editor.OnPostIconGUI(this, drawRect);
     }
 }