質問編集履歴

1

誤字

2020/06/24 00:13

投稿

TKGU
TKGU

スコア3

test CHANGED
File without changes
test CHANGED
@@ -1,107 +1,3 @@
1
- 2度目となり失礼を承知で、かなりの初心者ですがよろしくお願いします。
2
-
3
- オブジェクトをクリックすることで、
4
-
5
- テクスチャーA ▶︎ テクスチャーB ▶︎ テクスチャーC
6
-
7
- と変更できるようにしたいです。
8
-
9
-
10
-
11
- わかりづらいかもしれませんが、Aを貼っているオブジェクトをクリックすると、
12
-
13
- B、Cと連続して変更できるイメージです。
14
-
15
-
16
-
17
- `````````````````````````````````````````````````````````````````````````````````
18
-
19
- using UnityEngine;
20
-
21
-
22
-
23
-
24
-
25
- public class NewBehaviourScript1 : MonoBehaviour
26
-
27
- {
28
-
29
-
30
-
31
- //テクスチャを用意
32
-
33
- public Texture image;
34
-
35
- public Texture image2;
36
-
37
- public Texture image3;
38
-
39
-
40
-
41
- //押された回数を格納する変数
42
-
43
- public int clickCount = 0;
44
-
45
-
46
-
47
- private void Start()
48
-
49
- {
50
-
51
-
52
-
53
- }
54
-
55
-
56
-
57
- //オブジェクトにクリックした際に実行
58
-
59
- public void OnClickBlock()
60
-
61
-
62
-
63
- {
64
-
65
- if (clickCount == 1)
66
-
67
- {
68
-
69
-
70
-
71
- GetComponent<Renderer>().material.mainTexture = image2; //新しいテクスチャを反映する
72
-
73
-
74
-
75
- }
76
-
77
- if (clickCount == 2)
78
-
79
- {
80
-
81
-
82
-
83
-        GetComponent<Renderer>().material.mainTexture = image3; //新しいテクスチャを反映する
84
-
85
-
86
-
87
-
88
-
89
-
90
-
91
-
92
-
93
- }
94
-
95
-
96
-
97
- Debug.Log("test");
98
-
99
- }
100
-
101
- }
102
-
103
- `````````````````````````````````````````````````````````````````````````````````
104
-
105
1
  2度目となり失礼を承知で、かなりの初心者ですがよろしくお願いします。
106
2
 
107
3
  オブジェクトをクリックすることで、