Version: 2017.3
public Transform transform ;

Description

Прикрепленный Transform к данному GameObject'у. (null, если компонент не прикреплен).

using UnityEngine;
using System.Collections;

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