TextMesh.tabSize 制表键大小
var tabSize : float
Description描述
How much space will be inserted for a tab '\t' character. This is a multiplum of the 'spacebar' character offset
替代tab‘\t’字符多少空格。这是一个多少空格的字符偏移。
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
void Awake() {
GetComponent<TextMesh>().tabSize = 5;
}
}
GetComponent(TextMesh).tabSize = 5;
最后修改:2011年4月19日 Tuesday 9:47