El tag de este game object.
Un tag puede ser usado para identificar a un game object. Los tags deben ser declarados en el tag manager antes de usarlos.
gameObject.tag = "Player";
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { gameObject.tag = "Player"; } }