返回介绍

GUI.PasswordField 密码字段

发布于 2019-12-18 15:37:45 字数 3708 浏览 960 评论 0 收藏 0

JavaScript => public static function PasswordField(position: Rect, password: string, maskChar: char): string;
JavaScript => public static function PasswordField(position: Rect, password: string, maskChar: char, maxLength: int): string;
JavaScript => public static function PasswordField(position: Rect, password: string, maskChar: char, style: GUIStyle): string;
JavaScript => public static function PasswordField(position: Rect, password: string, maskChar: char, maxLength: int, style: GUIStyle): string;

C# => public static string PasswordField(Rect position, string password, char maskChar);
C# => public static string PasswordField(Rect position, string password, char maskChar, int maxLength);
C# => public static string PasswordField(Rect position, string password, char maskChar, GUIStyle style);
C# => public static string PasswordField(Rect position, string password, char maskChar, int maxLength, GUIStyle style);

Parameters 参数

positionRectangle on the screen to use for the text field.
用于文本字段在屏幕上矩形的位置。
passwordPassword to edit. The return value of this function should be assigned back to the string as shown in the example.
编辑的密码,这个函数返回值应该赋回给字符串,看下面的例子。
maskCharCharacter to mask the password with.
用于密码的字符遮罩。
maxLengthThe maximum length of the string. If left out, the user can type for ever and ever.
控制字符串的最大长度,如果不设置用户可以一直输入。
styleThe style to use. If left out, the textField style from the current GUISkin is used.
使用样式,如果不设置,密码字段的样式将应用当前的GUISkin皮肤。

Returns 返回

string The edited password.
返回被编辑的密码。

Description 描述

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

创建文本字段,用户可以编辑密码。

JavaScript:

var passwordToEdit : String = "My Password";
 
	function OnGUI () {
		// Make a password field that modifies passwordToEdit.
		passwordToEdit = GUI.PasswordField (Rect (10, 10, 200, 20), passwordToEdit, "*"[0], 25);
	}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    public string passwordToEdit = "My Password";
    void OnGUI() {
        passwordToEdit = GUI.PasswordField(new Rect(10, 10, 200, 20), passwordToEdit, "*"[0], 25);
    }
}

gui

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文