private void Awake()
 {
     if (instance == null)
     {
         instance = this;
         DontDestroyOnLoad(gameObject);
     }
     else
     {
         Destroy(gameObject);
     }
 }
 // Start is called before the first frame update
 void Start()
 {
     _objectPooler = ObjectPoolerManager.instance;
 }