Exemplo n.º 1
0
 void Update()
 {
     if (SGFirebase.SetupReady && showLogo)
     {
         SGScenes.LoadScene(SGScenes.IndexHome);
     }
 }
Exemplo n.º 2
0
    /*
     * public void LoadLevelScene(string scene)
     * {
     *  SGScenes.LoadScene(scene);
     * }
     */

    public void LoadLevelSceneProgress(int scene)
    {
        SGScenes.IndexNextLevel = scene;
        SGScenes.LoadScene(SGScenes.IndexLoading);
    }
Exemplo n.º 3
0
 public void LoadNextLevelScene()
 {
     SGScenes.LoadScene(SGScenes.GetActiveScene + 1);
 }
Exemplo n.º 4
0
 public void LoadLevelScene(int scene)
 {
     SGScenes.LoadScene(scene);
 }