| position | @param position Прямоугольник на экране, используемый для поля. |
| label | @param label Необязательная метка для отображения перед полем. |
| password | The password to edit. |
| style | @param style Необязательный стиль GUIStyle. |
string Значение, введенное пользователем.
Makes a text field where the user can enter a password.
This works just like GUI.PasswordField, but correctly responds to select all, etc. in the editor,
and it can have an optional label in front.
Password Field in an Editor Window.
using UnityEngine; using UnityEditor;
// Editor Script that creates a password field and lets you visualize what have you // typed in a label.
class EditorGUIPasswordField :