Exemplo n.º 1
0
 public FoldoutDrawerInternal(string title, AnimBoolGetter isExpanded, FoldoutOption options, params IDrawer[] bodies)
 {
     m_Title      = title;
     m_IsExpanded = isExpanded;
     m_Bodies     = bodies;
     m_Options    = options;
 }
Exemplo n.º 2
0
 public FoldoutDrawerInternal(string title, AnimBoolGetter isExpanded, bool indent, params IDrawer[] bodies)
 {
     this.title      = title;
     this.isExpanded = isExpanded;
     this.bodies     = bodies;
     this.indent     = indent;
 }
Exemplo n.º 3
0
 public static IDrawer FoldoutGroup(string title, AnimBoolGetter root, FoldoutOption options, params IDrawer[] bodies)
 {
     return(new FoldoutDrawerInternal(title, root, options, bodies));
 }
Exemplo n.º 4
0
 public static IDrawer FoldoutGroup(string title, AnimBoolGetter root, bool indent, params IDrawer[] bodies)
 {
     return(new FoldoutDrawerInternal(title, root, indent, bodies));
 }