Search Unity

Specifying foldout width

Discussion in 'Immediate Mode GUI (IMGUI)' started by fwalker, Jun 11, 2013.

  1. fwalker

    fwalker

    Joined:
    Feb 5, 2013
    Posts:
    255
    Is there a way to specify a width in a call to EditorGUILayout.Foldout(...) ?
    I don't understand how to Use GUIStyle :(
     
  2. MicroEyes

    MicroEyes

    Joined:
    Jul 3, 2012
    Posts:
    309
    Code (csharp):
    1.  EditorGUI.Foldout(RECT, TRUE, GUILayout.Width(200));
     
  3. Blinkq

    Blinkq

    Joined:
    Apr 19, 2015
    Posts:
    21
    Code (CSharp):
    1. GUIStyle style = new GUIStyle(EditorStyles.foldout);
    2. style.fixedWidth = 5;
    3. EditorGUILayout.Foldout(state, "label", style)