label | Password Field の前に表示するオプションのラベル |
password | 編集するパスワード |
style | オプションの GUIStyle |
options | 特別なレイアウト対応をするためのレイアウトオプションリスト。ここに渡された値は style で定義された設定を上書きします。See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight, GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight. |
string ユーザーが入力したパスワード
パスワードを入力するフィールドを作成します。
これは GUI.PasswordField と同じように動作します。しかし、エディターですべてを選択する等、正しく応答して、前にオプションのラベルを持つことができます。
さらに、左側にラベルを表示することができます。
" Password Field に入力した内容を可視化する簡単な Window "
// Editor Script that creates a password field and lets you visualize what have you // typed in a label. class EditorGUILayoutPasswordField extends EditorWindow { var text : String = "Some text here"; @MenuItem("Examples/Editor Password field usage") static function Init() { var window = GetWindow(EditorGUILayoutPasswordField); window.Show(); } function OnGUI() { text = EditorGUILayout.PasswordField("Type Something:",text); EditorGUILayout.LabelField("Written Text:", text); } }