예제 #1
0
 public static void Row(GUIStyle style, params Action[] widgets)
 {
     if (style != null)
     {
         EditorWidgits.ShowRow(NO_OPTIONS, style, widgets);
     }
     else
     {
         Logging.Warning("Given style parameter but was NULL!");
     }
 }
예제 #2
0
 public static void Row(Color background, params Action[] widgets)
 {
     EditorWidgits.Background(background, () => EditorWidgits.ShowRow(NO_OPTIONS, style: null, widgets: widgets));
 }
예제 #3
0
 //--- Layout ---
 public static void Row(params Action[] widgets)
 {
     EditorWidgits.ShowRow(NO_OPTIONS, style: null, widgets: widgets);
 }