label | 字段的前缀标签。 |
mask | 要显示的当前掩码。 |
displayedOption | 包含每个标志的标签的字符串数组。 |
options | 一个可选的布局选项列表,用于指定额外的布局属性。此处传递的任何值都将覆盖 style 定义的设置。另请参阅:GUILayout.Width、GUILayout.Height、GUILayout.MinWidth、GUILayout.MaxWidth、GUILayout.MinHeight、 GUILayout.MaxHeight、GUILayout.ExpandWidth、GUILayout.ExpandHeight。 |
int 用户修改的值。
创建一个适用于掩码的字段。
Simple window that shows the mask field.
using UnityEngine;
using UnityEditor;
public class MaskFieldExample : EditorWindow
{
static int flags = 0;
static string[] options = new string[] {"CanJump", "CanShoot", "CanSwim"};
[MenuItem("Examples/Mask Field usage")]
static void Init()
{
MaskFieldExample window = (MaskFieldExample)GetWindow(typeof(MaskFieldExample));
window.Show();
}
void OnGUI()
{
flags = EditorGUILayout.MaskField("Player Flags", flags, options);
}
}