1
我正在製作與團結的俄羅斯方塊遊戲,但此代碼不會產生我的tetrimino。我已將我的遊戲對象分配給組[]數組。GameObject不產生
這是我的代碼:
using UnityEngine;
using System.Collections;
public class Spawner1 : MonoBehaviour {
public GameObject[] group;
void start(){
SpawnNext();
}
void SpawnNext(){
Instantiate(group[Random.Range(0,group.Length)],new Vector2(5.0f,10.0f),Quaternion.identity);
}
}
對於明顯有錯別字的問題,請選擇關閉理由Off Topic> Typo/Not Reproducible。 – Serlite