UnityScripterAI
Discord ↗
Link Copied to Clipboard
×
"Create a cube"
using UnityEngine; public class CreateCube : MonoBehaviour { public GameObject cubePrefab; // Start is called before the first frame update void Start() { Instantiate(cubePrefab, Vector3.zero, Quaternion.identity); } }