Josh
2 years ago
10 changed files with 1144 additions and 9 deletions
@ -0,0 +1,29 @@ |
|||||
|
using System.Collections; |
||||
|
using System.Collections.Generic; |
||||
|
using UnityEngine; |
||||
|
using UnityEngine.SceneManagement; |
||||
|
|
||||
|
public class RoundOutro : MonoBehaviour |
||||
|
{ |
||||
|
[SerializeField] TMPro.TMP_Text _title; |
||||
|
[SerializeField] TMPro.TMP_Text _subtitle; |
||||
|
|
||||
|
// Start is called before the first frame update
|
||||
|
void Start() |
||||
|
{ |
||||
|
_subtitle.text = "light blue" + " player may\nchoose the topic"; |
||||
|
|
||||
|
Invoke("Advance", 3f); |
||||
|
} |
||||
|
|
||||
|
void Advance() |
||||
|
{ |
||||
|
SceneManager.LoadScene("TopicSelect"); |
||||
|
} |
||||
|
|
||||
|
// Update is called once per frame
|
||||
|
void Update() |
||||
|
{ |
||||
|
|
||||
|
} |
||||
|
} |
@ -0,0 +1,11 @@ |
|||||
|
fileFormatVersion: 2 |
||||
|
guid: 232fe45a665e70b4eaa053db797206c9 |
||||
|
MonoImporter: |
||||
|
externalObjects: {} |
||||
|
serializedVersion: 2 |
||||
|
defaultReferences: [] |
||||
|
executionOrder: 0 |
||||
|
icon: {instanceID: 0} |
||||
|
userData: |
||||
|
assetBundleName: |
||||
|
assetBundleVariant: |
File diff suppressed because it is too large
@ -0,0 +1,7 @@ |
|||||
|
fileFormatVersion: 2 |
||||
|
guid: 3982c6ec82b64f343a20d6a1e9b6f32f |
||||
|
DefaultImporter: |
||||
|
externalObjects: {} |
||||
|
userData: |
||||
|
assetBundleName: |
||||
|
assetBundleVariant: |
Loading…
Reference in new issue