質問編集履歴

1

CommandScriptのクラス名が抜けてました。

2021/02/16 05:18

投稿

HoneMetal
HoneMetal

スコア1

test CHANGED
File without changes
test CHANGED
@@ -10,7 +10,25 @@
10
10
 
11
11
  ```c#
12
12
 
13
+ using System.Collections;
14
+
15
+ using System.Collections.Generic;
16
+
17
+ using System.Text;
18
+
19
+ using UnityEngine;
20
+
21
+ using UnityEngine.EventSystems;
22
+
23
+ using UnityEngine.UI;
24
+
25
+
26
+
13
- // Start is called before the first frame update
27
+ public class CommandScript : MonoBehaviour
28
+
29
+ {
30
+
31
+ ...
14
32
 
15
33
  void Awake()
16
34