Example #1
0
 public static void VStack(String title = null, params Action[] actions)
 {
     UI.BeginVertical();
     if (title != null)
     {
         UI.Label(title);
     }
     UI.Group(actions);
     UI.EndVertical();
 }