Version: 5.3
public static int MaskField (Rect position, GUIContent label, int mask, string[] displayedOptions, GUIStyle style= EditorStyles.popup);
public static int MaskField (Rect position, string label, int mask, string[] displayedOptions, GUIStyle style= EditorStyles.popup);
public static int MaskField (Rect position, int mask, string[] displayedOptions, GUIStyle style= EditorStyles.popup);

파라미터

position Rectangle on the screen to use for this control.
label Label for the field.
mask The current mask to display.
displayedOption A string array containing the labels for each flag.
style Optional GUIStyle.
displayedOptions A string array containing the labels for each flag.

반환

int The value modified by the user.

설명

Make a field for masks.


Simple window that shows the mask field.

	class SimpleMaskUsage extends EditorWindow {
		@MenuItem("Examples/Mask Field Usage")
		static function Init() {
			var window = GetWindow(SimpleMaskUsage);
			window.Show();
		}
		
		var flags : int = 0;
		var options : String[] = ["CanJump", "CanShoot", "CanSwim"];
		function OnGUI() {
			flags = EditorGUI.MaskField (new Rect (0, 0, 300, 20), "Player Flags", flags, options, false);
		}
	}