質問編集履歴
1
title
CHANGED
File without changes
|
body
CHANGED
@@ -14,13 +14,16 @@
|
|
14
14
|
using UnityEngine;
|
15
15
|
using UnityEngine.SceneManagement;
|
16
16
|
|
17
|
-
public class
|
17
|
+
public class newtitledirector : Monobehavior
|
18
|
-
{void Update()
|
19
|
-
{void onTriggerEnter(Collider other)
|
20
18
|
{
|
19
|
+
void Update()
|
20
|
+
{
|
21
|
+
void OnTriggerEnter(Collider other)
|
22
|
+
{
|
21
|
-
SceneManager.LoadScene(“titlescene”);
|
23
|
+
SceneManager.LoadScene(“titlescene”);
|
24
|
+
}
|
25
|
+
}
|
22
26
|
}
|
23
|
-
}
|
24
27
|
ソースコード
|
25
28
|
```
|
26
29
|
|