2016-04-14 70 views

回答

4

您在使用ObjectFindGameObjectsWithTag 'S'。在Object中使用FindGameObjectWithTag而不是's'。該函數的's'版本用於數組,但是g未定義爲數組。

這行代碼應該是:

g = GameObject.FindGameObjectWithTag("tagText No"); 
2

FindGameObjectsWithTag返回一個遊戲對象數組(GameObject[]),並且您試圖將其分配到一個GameObject

使用FindWithTag代替:

g = GameObject.FindWithTag("tagText no"); 
+0

謝謝主席先生給了答案 –

相關問題