Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

GUILayout.PasswordField

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public static function PasswordField(password: string, maskChar: char, params options: GUILayoutOption[]): string;
public static string PasswordField(string password, char maskChar, params GUILayoutOption[] options);
public static function PasswordField(password: string, maskChar: char, maxLength: int, params options: GUILayoutOption[]): string;
public static string PasswordField(string password, char maskChar, int maxLength, params GUILayoutOption[] options);
public static function PasswordField(password: string, maskChar: char, style: GUIStyle, params options: GUILayoutOption[]): string;
public static string PasswordField(string password, char maskChar, GUIStyle style, params GUILayoutOption[] options);
public static function PasswordField(password: string, maskChar: char, maxLength: int, style: GUIStyle, params options: GUILayoutOption[]): string;
public static string PasswordField(string password, char maskChar, int maxLength, GUIStyle style, params GUILayoutOption[] options);

Parámetros

password Password to edit. The return value of this function should be assigned back to the string as shown in the example.
maskChar Character to mask the password with.
maxLength The maximum length of the string. If left out, the user can type for ever and ever.
style The style to use. If left out, the textField style from the current GUISkin is used.

Valor de retorno

string The edited password.

Descripción

Make a text field where the user can enter a password.


Password field in the Game View.

	var passwordToEdit : String = "My Password";

function OnGUI () { // Make a password field that modifies passwordToEdit. passwordToEdit = GUILayout.PasswordField (passwordToEdit, "*"[0], 25); }
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public string passwordToEdit = "My Password"; void OnGUI() { passwordToEdit = GUILayout.PasswordField(passwordToEdit, "*"[0], 25); } }