Ejemplo n.º 1
0
 public static string PasswordField(string password, char maskChar, GUIStyle style, params GUILayoutOption[] options)
 {
     return(GUILayout.PasswordField(password, maskChar, -1, style, options));
 }
Ejemplo n.º 2
0
 public static string PasswordField(string password, char maskChar, int maxLength, params GUILayoutOption[] options)
 {
     return(GUILayout.PasswordField(password, maskChar, maxLength, GUI.skin.textField, options));
 }