返回介绍

GUILayout.PasswordField 密码字段

发布于 2019-12-18 15:37:47 字数 3616 浏览 946 评论 0 收藏 0

JavaScript => public static function PasswordField(password: string, maskChar: char, params options: GUILayoutOption[]): string;
JavaScript =>public static function PasswordField(password: string, maskChar: char, maxLength: int, params options: GUILayoutOption[]): string;
JavaScript =>public static function PasswordField(password: string, maskChar: char, style: GUIStyle, params options: GUILayoutOption[]): string;
JavaScript =>public static function PasswordField(password: string, maskChar: char, maxLength: int, style: GUIStyle, params options: GUILayoutOption[]): string;

C# => public static string PasswordField(string password, char maskChar, params GUILayoutOption[] options);
C# => public static string PasswordField(string password, char maskChar, int maxLength, params GUILayoutOption[] options);
C# => public static string PasswordField(string password, char maskChar, GUIStyle style, params GUILayoutOption[] options);
C# => public static string PasswordField(string password, char maskChar, int maxLength, GUIStyle style, params GUILayoutOption[] options);

Parameters 参数

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 = GUILayout.PasswordField (passwordToEdit, "*"[0], 25);
	}

C#:

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

guilayout

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

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

发布评论

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