GUIStyle.wordWrap 自动换行

var alignment : TextAnchor

Description描述

Word wrap the text?

文本要自动换行么?

This will cause any text contrained to be wordwrapped to fit within the width of a control.

这将使任何包含的文本自动换行以适应控件的宽度。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void OnGUI() {
		if (GUI.skin.customStyles.Length > 0)
			GUI.skin.customStyles[0].wordWrap = true;

	}
}
function OnGUI() {
	if(GUI.skin.customStyles.Length > 0)
		GUI.skin.customStyles[0].wordWrap = true;
}
最后修改:2011年1月20日 Thursday 22:11

本脚本参考基于Unity 3.4.1f5

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