position | 表示位置 |
label | フィールドのラベル |
mask | 表示する現在のマスク |
displayedOption | 各フラグのラベルを含む String 配列 |
style | オプションの GUIStyle |
displayedOptions | 各フラグのラベルを含む String 配列 |
int ユーザーによって設定された値
Mask Field を作成します。
Note: The mask values for the flags associated with each option in the menu will be consecutive powers of 2 starting with 1, i.e. 1, 2, 4, 8, 16, and so on.
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); } }