Version: 2022.1
public static int IntField (Rect position, int value, GUIStyle style= EditorStyles.numberField);
public static int IntField (Rect position, string label, int value, GUIStyle style= EditorStyles.numberField);
public static int IntField (Rect position, GUIContent label, int value, GUIStyle style= EditorStyles.numberField);

参数

position 屏幕上用于 int 字段的矩形。
label (可选)显示在 int 字段前的标签。
value 要编辑的值。
style 可选 GUIStyle

返回

int 用户输入的值。

描述

创建一个用于输入整数的文本字段。


编辑器窗口中的 Int 字段。

//Create a folder and name it "Editor" (Right click in your Project Asset folder and go to Create>Folder) if you don't already have one
//Place this script in the Editor folder
//This script creates a new menu at the top of the Editor named "Examples" with one item "Clone Object".

using UnityEngine; using UnityEditor;

class Example : EditorWindow { int clones = 1;

[MenuItem("Examples/Clone Object")] static void Init() { //Create the new Editor window and show it EditorWindow window = GetWindow(typeof(Example)); window.Show(); }

void OnGUI() { //The field which allows you to input the amount of clones of a GameObject you want clones = EditorGUI.IntField(new Rect(0, 35, position.width, 15), "Number of clones:", clones);

//If there isn't a currently selected GameObject, this message appears if (Selection.activeGameObject == null) EditorGUI.LabelField(new Rect(3, 3, position.width, 20), "Please click on a GameObject in your Scene!");

//Press the clone Button if (GUI.Button(new Rect(0, 55, position.width, 20), "Clone!")) { //Check that you have a GameObject selected if (Selection.activeGameObject != null) { //Loop until the number of clones is reached for (int i = 0; i < clones; i++) { //Spawn each of the clones Instantiate(Selection.activeGameObject, Vector3.zero, Quaternion.identity); } } } } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961