GUI.TextField 文本字段

static function TextField (position : Rect, text : String) : String
static function TextField (position : Rect, text : String, maxLength : int) : String
static function TextField (position : Rect, text : String, style : GUIStyle) : String
static function TextField (position : Rect, text : String, maxLength : int, style : GUIStyle) : String

Parameters参数

Returns 返回

string - the edited string.
返回被编辑的字符串。

Description描述

Make a single-line text field where the user can edit a string.

创建单行文本字段,用户可以编辑字符串。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public string stringToEdit = "Hello World";
	void OnGUI() {
		stringToEdit = GUI.TextField (new Rect(10, 10, 200, 20), stringToEdit, 25);
	}
}
var stringToEdit : String = "Hello World";

function OnGUI () {
	// 创建一个文本字段,用户可以修改编辑。
	stringToEdit = GUI.TextField (Rect (10, 10, 200, 20), stringToEdit, 25);
}
最后修改:2010年12月2日 Thursday 22:42

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。