EditorGUILayout.TextArea 文本区域

static function TextArea (text : string, params options : GUILayoutOption[]) : string
static function TextArea (text : string, style : GUIStyle, params options : GUILayoutOption[]) : string

Parameters参数

Returns

string - The text entered by the user.

返回字符串,用户输入的文本。

Description描述

Make a text area.

制作一个文本区域。

This works just like GUILayout.TextArea, but correctly responds to select all, copy, paste etc. in the editor.

就像GUILayout.TextArea,但正确响应select all,copy,paste等。

EditorGUILayout.TextArea 文本区域

Quick script editor.
快速脚本编辑器。

// Simple script that lets you visualize your scripts in an editor window
// This can be expanded to save your scripts also in the editor window.
//在编辑器窗口可视化脚本,这可扩展保存脚本。
class EditorGUILayoutTextArea extends EditorWindow {
	var text : String = "Nothing Opened...";
	var txtAsset : TextAsset;
	var scroll : Vector2;

	@MenuItem("Examples/Script Visualizer")
	static function Init() {
		var window = GetWindow(EditorGUILayoutTextArea);
		window.Show();
	}
	function OnGUI() {
		var newTxtAsset : TextAsset = EditorGUILayout.ObjectField(txtAsset, TextAsset);

		if (newTxtAsset != txtAsset)
			ReadTextAsset(newTxtAsset);

		scroll = EditorGUILayout.BeginScrollView(scroll);
		text = EditorGUILayout.TextArea(text, GUILayout.Height(position.height - 30));
		EditorGUILayout.EndScrollView();
	}

	function ReadTextAsset(txt : TextAsset) {
		text = txt.text;
		txtAsset = txt;
	}
}
最后修改:2011年7月14日 Thursday 21:22

本脚本参考基于Unity 3.4.1f5

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