質問編集履歴
3
prefabイメージ画像の追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -63,3 +63,11 @@
|
|
63
63
|
}
|
64
64
|
|
65
65
|
```
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
### prefabのイメージ画像を追記
|
72
|
+
|
73
|
+

|
2
タイトル修正
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
Unityでprefabの中
|
1
|
+
Unityでprefabの中をScriptから動的に変更したい
|
test
CHANGED
File without changes
|
1
不要なasを削除
test
CHANGED
File without changes
|
test
CHANGED
@@ -52,7 +52,7 @@
|
|
52
52
|
|
53
53
|
{
|
54
54
|
|
55
|
-
GameObject obj = Instantiate(prefab, this.transform.position, Quaternion.identity, this.transform)
|
55
|
+
GameObject obj = Instantiate(prefab, this.transform.position, Quaternion.identity, this.transform);
|
56
56
|
|
57
57
|
// こんな感じで変更したいのですが、やり方が違うのでしょうか?
|
58
58
|
|