Exemplo n.º 1
0
 void Start()
 {
     this.onClick.AddListener(() =>
     {
         SceneLoaderWithTween.LoadScene(scene, tweenType, loadSceneMode);
     });
 }
Exemplo n.º 2
0
 public void GotoMenu()
 {
     SceneLoaderWithTween.LoadScene("Settings");
 }
Exemplo n.º 3
0
 public void GotoHome()
 {
     SceneLoaderWithTween.LoadScene("Top");
 }
Exemplo n.º 4
0
 public void SceneLoadWithTween(string sceneName)
 {
     SceneLoaderWithTween.LoadScene(sceneName);
 }
Exemplo n.º 5
0
 public void ReturnScene()
 {
     SceneLoaderWithTween.ReturnLoadScene();
 }
Exemplo n.º 6
0
    // Start is called before the first frame update
    async void Start()
    {
        await UniTask.Delay(delayMilliSeconds);

        SceneLoaderWithTween.LoadScene(scene, tweenType, LoadSceneMode.Single);
    }