包含此页的版本:
不含此页的版本:
附加到此 GameObject 的 Transform。
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public GameObject other; void Example() { other.transform.Translate(1, 1, 1); } }