using System.Collections; using System.Collections.Generic; using UnityEngine; public class LoaderCallBack : MonoBehaviour { private bool _firstUpdate; private void Update() { if (!_firstUpdate) { _firstUpdate = true; Load.LoaderCallBack(); } } }