Version: 2022.3
言語: 日本語
public Transform transform ;

説明

The Transform attached to this GameObject.

using UnityEngine;

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