質問編集履歴
1
コード、一覧のスクリーンショットの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -17,3 +17,51 @@
|
|
17
17
|
|
18
18
|
|
19
19
|
どうすればよいのでしょうか?
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
追記:
|
24
|
+
|
25
|
+
自作関数を含むコードです。
|
26
|
+
|
27
|
+
```C#
|
28
|
+
|
29
|
+
using UnityEngine;
|
30
|
+
|
31
|
+
using System.Collections;
|
32
|
+
|
33
|
+
using UnityEngine.SceneManagement;
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
public class ToHelpSystem : MonoBehaviour
|
38
|
+
|
39
|
+
{
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
public ToHelpSystem()
|
44
|
+
|
45
|
+
{
|
46
|
+
|
47
|
+
}
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
public void ToHelp()
|
52
|
+
|
53
|
+
{
|
54
|
+
|
55
|
+
SceneManager.LoadScene("HelpWindow");
|
56
|
+
|
57
|
+
}
|
58
|
+
|
59
|
+
}
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
```
|
64
|
+
|
65
|
+
一覧のスクリーンショットは以下の通りです。
|
66
|
+
|
67
|
+
![表示される関数の一覧](bbc6ef309316fe561b223ff8a94bd827.png)
|