質問編集履歴
2
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -38,7 +38,7 @@
|
|
38
38
|
|
39
39
|
{
|
40
40
|
|
41
|
-
Debug.Log (""+transform.GetChild(
|
41
|
+
Debug.Log (""+transform.GetChild(x).gameObject.activeSelf+""+x);
|
42
42
|
|
43
43
|
transform.GetChild(0).gameObject.SetActive (false);
|
44
44
|
|
1
デバッグ処理の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -38,6 +38,8 @@
|
|
38
38
|
|
39
39
|
{
|
40
40
|
|
41
|
+
Debug.Log (""+transform.GetChild(a).gameObject.activeSelf+""+a);
|
42
|
+
|
41
43
|
transform.GetChild(0).gameObject.SetActive (false);
|
42
44
|
|
43
45
|
}
|
@@ -50,6 +52,10 @@
|
|
50
52
|
|
51
53
|
```
|
52
54
|
|
53
|
-
二番目以降が
|
55
|
+
二番目以降がすべて非表示ても1番目が非表示になってしまいます
|
54
56
|
|
57
|
+
デバッグにも1~15までfalseになっています
|
58
|
+
|
59
|
+
if(transform.GetChild(x).gameObject.activeSelf==true);
|
60
|
+
|
55
|
-
|
61
|
+
の部分をすり抜けてしまっています
|