last update
This commit is contained in:
@@ -3,29 +3,30 @@ using System.Collections.Generic;
|
||||
|
||||
using DG.Tweening;
|
||||
using UnityEngine;
|
||||
using UnityEngine.SceneManagement;
|
||||
using UnityEngine.Events;
|
||||
|
||||
[RequireComponent(typeof(CanvasGroup))]
|
||||
public class LogoHandler : MonoBehaviour
|
||||
{
|
||||
[SerializeField] private CanvasGroup logo;
|
||||
[SerializeField] UnityEvent OnTimerEnded;
|
||||
private CanvasGroup canvasGroup;
|
||||
|
||||
IEnumerator Start()
|
||||
{
|
||||
DontDestroyOnLoad(gameObject);
|
||||
|
||||
canvasGroup = GetComponent<CanvasGroup>();
|
||||
|
||||
var sceneLoading = SceneManager.LoadSceneAsync(1, LoadSceneMode.Single);
|
||||
while(!sceneLoading.isDone)
|
||||
yield return null;
|
||||
|
||||
yield return new WaitForSeconds(2);
|
||||
|
||||
logo.DOFade(0, .4f)
|
||||
.OnComplete(() => canvasGroup
|
||||
.DOFade(0, .8f)
|
||||
.OnComplete(() => Destroy(this.gameObject)));
|
||||
.OnComplete(() =>
|
||||
{
|
||||
OnTimerEnded?.Invoke();
|
||||
Destroy(this.gameObject);
|
||||
}));
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user