transform
The Transform attached to this GameObject.
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public Transform transform { get; }
Examples
using UnityEngine;public class Example : MonoBehaviour{ void Start() { transform.Translate(1, 1, 1); }}