Search Unity

  1. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  2. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

Property drawer enum

Discussion in 'Immediate Mode GUI (IMGUI)' started by MaskedMouse, Jul 22, 2018.

  1. MaskedMouse

    MaskedMouse

    Joined:
    Jul 8, 2014
    Posts:
    1,091
    I'm trying to re-create the property drawer that Ryan used in his talk Unite Austin 2017 with Scriptable Objects.

    So basically this is a sort of enum popup with a field behind the chosen enum.
    But if I do an EditorGUI.EnumPopup it will show up as a bar with the enum name in it instead of a menu dropdown kind of like thing as shown in the image below.
    How do I re-create this kind of menu dropdown?

    Dropdown.png


    Edit: Ah right, found the solution apparently he had a github source up

    https://github.com/roboryantron/Uni...Code/Variables/Editor/FloatReferenceDrawer.cs

    The specific thing I was looking for:
    Code (CSharp):
    1. popupStyle = new GUIStyle(GUI.skin.GetStyle("PaneOptions"));
    2. popupStyle.imagePosition = ImagePosition.ImageOnly;
     
    Last edited: Jul 25, 2018
  2. Hosnkobf

    Hosnkobf

    Joined:
    Aug 23, 2016
    Posts:
    1,096
    To answer the actual question properly: Pass a different GUIStyle (and maybe also GUILayout.Width(x) as GUILayoutOption).