EditorGUILayout.IntPopupstatic function IntPopup (selectedValue : int, displayedOptions : string[], optionValues : int[], params options : GUILayoutOption[]) : intstatic function IntPopup (selectedValue : int, displayedOptions : string[], optionValues : int[], style : GUIStyle, params options : GUILayoutOption[]) : intstatic function IntPopup (selectedValue : int, displayedOptions : GUIContent[], optionValues : int[], params options : GUILayoutOption[]) : intstatic function IntPopup (selectedValue : int, displayedOptions : GUIContent[], optionValues : int[], style : GUIStyle, params options : GUILayoutOption[]) : intstatic function IntPopup (label : String, selectedValue : int, displayedOptions : string[], optionValues : int[], params options : GUILayoutOption[]) : intstatic function IntPopup (label : String, selectedValue : int, displayedOptions : string[], optionValues : int[], style : GUIStyle, params options : GUILayoutOption[]) : intstatic function IntPopup (label : GUIContent, selectedValue : int, displayedOptions : GUIContent[], optionValues : int[], params options : GUILayoutOption[]) : intstatic function IntPopup (label : GUIContent, selectedValue : int, displayedOptions : GUIContent[], optionValues : int[], style : GUIStyle, params options : GUILayoutOption[]) : intParameters
Returnsint - The value of the option that has been selected by the user. DescriptionMake an integer popup selection field. Takes the currently selected integer as a parameter and returns the integer selected by the user.
// Simple Editor Script that lets you rescale the current selected GameObject.
static function IntPopup (property : SerializedProperty, displayedOptions : GUIContent[], optionValues : int[], params options : GUILayoutOption[]) : voidstatic function IntPopup (property : SerializedProperty, displayedOptions : GUIContent[], optionValues : int[], label : GUIContent, params options : GUILayoutOption[]) : voidParameters
DescriptionMake an integer popup selection field.
|

