Version: 5.4
public Transform transform ;

Descripción

El Transform adjunto a este GameObject (null si no hay uno adjunto).

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { transform.Translate(1, 1, 1); } }