回答編集履歴
2
画像の追加
test
CHANGED
@@ -4,19 +4,21 @@
|
|
4
4
|
|
5
5
|
|
6
6
|
|
7
|
-
|
7
|
+
[SerializeField] Image gameObject;
|
8
8
|
|
9
9
|
|
10
10
|
|
11
|
-
|
11
|
+
// Start is called before the first frame update
|
12
12
|
|
13
|
-
|
13
|
+
void Start()
|
14
14
|
|
15
|
-
|
15
|
+
{
|
16
16
|
|
17
|
-
image
|
17
|
+
var image = Instantiate(gameObject);
|
18
18
|
|
19
|
+
image.color = new Color(1, 0.03f, 1f, 0.5f);
|
20
|
+
|
19
|
-
}
|
21
|
+
}
|
20
22
|
|
21
23
|
```
|
22
24
|
|
1
画像の追加
test
CHANGED
@@ -23,3 +23,7 @@
|
|
23
23
|
|
24
24
|
|
25
25
|
適当に書きましたが、こんな感じで変わりません?
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
![イメージ説明](70e21c9b125f3bb87984d5f27bfffe2b.png)
|