前提・実現したいこと
Unity ScrollViewでクリックした行を削除したいので
ScrollViewの一覧から任意の行を削除したいのですが内容が取り込めません。
Unity
1 2 Scrollsw = Node_Text.text; 3 img_obj = GameObject.Find("Node(Clone)"); 4 foreach (Transform n in img_obj.transform) 5 { 6 var text = img_obj.GetComponentInChildren<Text>(); 7 ; 8 if (Scrollsw == Node_Text.text) 9 { 10 GameObject.Destroy(n.gameObject); 11 } 12 } 13// 14var text = img_obj.GetComponentInChildren<Text>(); 15この方法だと1件目の値が常に入って来ます。 16var text = n.GetComponentInChildren<Text>(); 17この方法だとnullが入って来ます。
回答2件
あなたの回答
tips
プレビュー