TextMesh.anchor 锚

var anchor : TextAnchor

Description描述

Which point of the text shares the position of the Transform

文本上的哪个点共享此变换的位置。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void Awake() {
		GetComponent<TextMesh>().anchor = TextAnchor.MiddleCenter;
	}
}
GetComponent(TextMesh).anchor = TextAnchor.MiddleCenter;
最后修改:2011年4月19日 Tuesday 9:03

本脚本参考基于Unity 3.4.1f5

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