/*
  * ========================================================================================================================================================================================================
  * Unity Methods
  * ========================================================================================================================================================================================================
  */
 private void OnEnable()
 {
     if (_Instance == null)
     {
         _Instance = this;
     }
     else
     {
         Debug.LogError("ERROR: Instance Already Exists");
     }
 }