GUISkin.textArea 文本区域

var textArea : GUIStyle

Description描述

Style used by default for GUI.TextArea controls.

用于GUI.TextArea控件的默认样式。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public GUIStyle style;
	private string str = "A string...\nWith two lines.";
	void OnGUI() {
		GUI.skin.textArea = style;
		str = GUILayout.TextArea(str);
	}
}
// Modifies only the textArea style of the current GUISkin
//修改当前GUISkin的textArea样式

var style : GUIStyle;
private var str : String = "A string...\nWith two lines.";

function OnGUI() {
	GUI.skin.textArea = style;
	str = GUILayout.TextArea(str);
}
最后修改:2011年1月25日 Tuesday 16:01

本脚本参考基于Unity 3.4.1f5

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