GameObject.tag 标签

var tag : string

Description描述

The tag of this game object.
A tag can be used to identify a game object. Tags must be declared in the tag manager before using them.

游戏物体的标签。
一个标签可以用于识别一个游戏物体标签必须在使用之前在标签管理器里面先声明。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		gameObject.tag = "Player";
	}
}
gameObject.tag = "Player";
最后修改:2011年5月19日 Thursday 22:18

本脚本参考基于Unity 3.4.1f5

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