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

本脚本参考基于Unity 3.4.1f5

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