You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
677 B
C#
27 lines
677 B
C#
using DG.Tweening;
|
|
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
using UnityEngine.UI;
|
|
|
|
public class Bootstrapper : MonoBehaviour
|
|
{
|
|
[SerializeField] private Image loadingSlider;
|
|
[SerializeField] private GameObject loadingBarObj;
|
|
private void Start()
|
|
{
|
|
#if UNITY_EDITOR
|
|
StartGame();
|
|
#endif
|
|
}
|
|
// Called from GoogleSignInManager when login is successful
|
|
public void StartGame()
|
|
{
|
|
Debug.Log("Starting game...");
|
|
loadingBarObj.SetActive(true);
|
|
loadingSlider.DOFillAmount(1f, 2.5f).OnComplete(() =>
|
|
{
|
|
SceneManager.LoadScene(SceneManager.GetActiveScene().buildIndex + 1);
|
|
});
|
|
}
|
|
}
|