Version: 2017.2
public Transform transform ;

説明

The Transform attached to this GameObject.

using UnityEngine;
using System.Collections;

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