Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Close Submission failedFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
Close Your name Your email Suggestion* Declarationpublic static string
PasswordField(
Rect position, string
password,
GUIStyle style= EditorStyles.textField);
Declarationpublic static string
PasswordField(
Rect position, string
label, string
password,
GUIStyle style= EditorStyles.textField);
Declarationpublic static string
PasswordField(
Rect position,
GUIContent label, string
password,
GUIStyle style= EditorStyles.textField);
Parameters Parameter Description position Rectangle on the screen to use for the password field. label Optional label to display in front of the password field. password The password to edit. style Optional GUIStyle. Returnsstring The password entered by the user.
DescriptionMakes 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.
using UnityEngine; using UnityEditor;// Editor Script that creates a password field and lets you visualize what have you // typed in a label.
class EditorGUIPasswordField : EditorWindow { string text = "Some text here";
[MenuItem("Examples/Editor Password field usage")] static void Init() { EditorWindow window = GetWindow<EditorGUIPasswordField>(); window.Show(); }
void OnGUI() { text = EditorGUI.PasswordField( new Rect(3, 3, position.width - 6, 20), "Type Something:", text);
EditorGUI.LabelField( new Rect(3, 25, position.width - 5, 20), "Written Text:", text); } }
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4