void Awake()
 {
     if (instance != null)
     {
         this.enabled = false;
         return;
     }
     instance = this;
 }
 void OnDestroy()
 {
     instance = null;
 }