The Transform attached to this GameObject.
var other : GameObject; other.transform.Translate(1,1,1);
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { public GameObject other; void Example() { other.transform.Translate(1, 1, 1); } }