Version: 5.3 (switch to 5.4b)
ЯзыкEnglish
  • C#
  • JS

Язык программирования

Выберите подходящий для вас язык программирования. Все примеры кода будут представлены на выбранном языке.

EditorGUILayout.IntPopup

Предложить изменения

Успех!

Благодарим вас за то, что вы помогаете нам улучшить качество документации по Unity. Однако, мы не можем принять любой перевод. Мы проверяем каждый предложенный вами вариант перевода и принимаем его только если он соответствует оригиналу.

Закрыть

Ошибка внесения изменений

По определённым причинам предложенный вами перевод не может быть принят. Пожалуйста <a>попробуйте снова</a> через пару минут. И выражаем вам свою благодарность за то, что вы уделяете время, чтобы улучшить документацию по Unity.

Закрыть

Отменить

Руководство
public static function IntPopup(selectedValue: int, displayedOptions: string[], optionValues: int[], params options: GUILayoutOption[]): int;
public static int IntPopup(int selectedValue, string[] displayedOptions, int[] optionValues, params GUILayoutOption[] options);
public static function IntPopup(selectedValue: int, displayedOptions: string[], optionValues: int[], style: GUIStyle, params options: GUILayoutOption[]): int;
public static int IntPopup(int selectedValue, string[] displayedOptions, int[] optionValues, GUIStyle style, params GUILayoutOption[] options);
public static function IntPopup(selectedValue: int, displayedOptions: GUIContent[], optionValues: int[], params options: GUILayoutOption[]): int;
public static int IntPopup(int selectedValue, GUIContent[] displayedOptions, int[] optionValues, params GUILayoutOption[] options);
public static function IntPopup(selectedValue: int, displayedOptions: GUIContent[], optionValues: int[], style: GUIStyle, params options: GUILayoutOption[]): int;
public static int IntPopup(int selectedValue, GUIContent[] displayedOptions, int[] optionValues, GUIStyle style, params GUILayoutOption[] options);
public static function IntPopup(label: string, selectedValue: int, displayedOptions: string[], optionValues: int[], params options: GUILayoutOption[]): int;
public static int IntPopup(string label, int selectedValue, string[] displayedOptions, int[] optionValues, params GUILayoutOption[] options);
public static function IntPopup(label: string, selectedValue: int, displayedOptions: string[], optionValues: int[], style: GUIStyle, params options: GUILayoutOption[]): int;
public static int IntPopup(string label, int selectedValue, string[] displayedOptions, int[] optionValues, GUIStyle style, params GUILayoutOption[] options);
public static function IntPopup(label: GUIContent, selectedValue: int, displayedOptions: GUIContent[], optionValues: int[], params options: GUILayoutOption[]): int;
public static int IntPopup(GUIContent label, int selectedValue, GUIContent[] displayedOptions, int[] optionValues, params GUILayoutOption[] options);
public static function IntPopup(label: GUIContent, selectedValue: int, displayedOptions: GUIContent[], optionValues: int[], style: GUIStyle, params options: GUILayoutOption[]): int;
public static int IntPopup(GUIContent label, int selectedValue, GUIContent[] displayedOptions, int[] optionValues, GUIStyle style, params GUILayoutOption[] options);

Параметры

label @param label Необязательный текст перед полем.
selectedValue @param selected Значение enum показываемое в поле как выбранное.
displayedOptions An array with the displayed options the user can choose from.
optionValues An array with the values for each option.
style @param style Необязательный стиль GUIStyle.
options @param options Настраиваемый список настроек слоя, который определяет дополнительные свойства слоя. Любые значения, переданные здесь, будут переопределять настройки, определенный стилем. See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight, GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.

Возврат значений

int @return Значение перечисления enum которое было выбрано пользователем.

Описание

Make an integer popup selection field.

Получает текущее значение enum в качестве параметра, и возвращает значение enum, выбранное пользователем.


Rescales the current selected GameObject.

	// Simple Editor Script that lets you rescale the current selected GameObject.
	
	class EditorGUILayoutIntPopup extends EditorWindow {
		var selectedSize : int = 1;
		var names : String[] = ["Normal", "Double", "Quadruple"];
		var sizes : int[] = [1,2,4];
		
		@MenuItem("Examples/Editor GUILayout Int Popup usage")
		static function Init() {
			var window = GetWindow(EditorGUILayoutIntPopup);
			window.Show();
		}
		function OnGUI() {
			selectedSize = EditorGUILayout.IntPopup("Resize Scale: ", selectedSize, names, sizes);
			if(GUILayout.Button("Scale"))
				ReScale();
		}
		function ReScale() {
			if(Selection.activeTransform)
				Selection.activeTransform.localScale =
					Vector3(selectedSize, selectedSize, selectedSize);
			else	Debug.LogError("No Object selected, please select an object to scale.");
		}
	}

public static function IntPopup(property: SerializedProperty, displayedOptions: GUIContent[], optionValues: int[], label: GUIContent, style: GUIStyle, params options: GUILayoutOption[]): void;
public static void IntPopup(SerializedProperty property, GUIContent[] displayedOptions, int[] optionValues, GUIContent label, GUIStyle style, params GUILayoutOption[] options);
public static function IntPopup(property: SerializedProperty, displayedOptions: GUIContent[], optionValues: int[], params options: GUILayoutOption[]): void;
public static void IntPopup(SerializedProperty property, GUIContent[] displayedOptions, int[] optionValues, params GUILayoutOption[] options);
public static function IntPopup(property: SerializedProperty, displayedOptions: GUIContent[], optionValues: int[], label: GUIContent, params options: GUILayoutOption[]): void;
public static void IntPopup(SerializedProperty property, GUIContent[] displayedOptions, int[] optionValues, GUIContent label, params GUILayoutOption[] options);

Параметры

property @param selected Значение enum показываемое в поле как выбранное.
displayedOptions An array with the displayed options the user can choose from.
optionValues An array with the values for each option.
label @param label Необязательный текст перед полем.
options @param options Настраиваемый список настроек слоя, который определяет дополнительные свойства слоя. Любые значения, переданные здесь, будут переопределять настройки, определенный стилем. See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight, GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.

Описание

Make an integer popup selection field.