最新回答 / 曉風(fēng)清雅
課程后面有資料下載鏈接。
需要些基礎(chǔ)才能 聽(tīng)懂,我聽(tīng)不太懂,老師您的英文發(fā)音好多都是錯(cuò)的,希望能改進(jìn)下哈
2016-05-12
GDGeek代碼的開源地址https://coding.net/u/gdgeek/p/qa/git/tree/master/Assets/Plugin/GDGeek
2016-05-07
private Square[] list_ = null;
void Awake()
{
list_ = this.GetComponentInChildren<Square> ();
之后vs會(huì)報(bào)錯(cuò)
Cannot implicitly convert type Square to Square[]
void Awake()
{
list_ = this.GetComponentInChildren<Square> ();
之后vs會(huì)報(bào)錯(cuò)
Cannot implicitly convert type Square to Square[]
2016-04-27
ArgumentException: GetComponent requires that the requested component 'Square[]' derives from MonoBehaviour or Component or is an interface.怎么回事
2016-04-27
最新回答 / Songlan
就是找到那個(gè)方塊square.gameObject.setActive(true);啟用這個(gè) 方塊,就可以顯示啦。你看play的start方法里面,隱藏了的,哪里用的就是false
2016-04-27