GUIText.tabSize 制表符大小
var tabSize : float
Description描述
The tab width multiplier.
制表符宽度倍数。
This is multiplied with the tab width defined in the font.
在该字体使定义的制表符宽度倍增。
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
public void Awake() {
guiText.tabSize = 4.0F;
}
}
guiText.tabSize = 4.0;
最后修改:2011年1月24日 Monday 18:24