private static void OnLoadingScreenLoaded(Scene scene)
 {
     animator = scene.FindRootObject <LoadingScreenAnimation>();
     animator.Intro(OnIntroComplete);
     animator.onCancel = ClearData;
 }
Ejemplo n.º 2
0
 private static void OnLoadingScreenLoaded(Scene scene)
 {
     animator = Scenes.FindRootObject <LoadingScreenAnimation>(scene);
     animator.Intro(OnIntroComplete);
 }