You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
596 B
29 lines
596 B
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
|