using System.Collections; using System.Collections.Generic; using UnityEngine; public class LoaderCallback : MonoBehaviour{ bool isFirstUpdate = true; void Update(){ isFirstUpdate = false; Loader.LoaderCallback(); } }