public void LaunchShoot()
 {
     if (shootPlayer)
     {
         if (shootPlayer.TryLaunchShoot())
         {
             ActivateUI(shootBtn, false);
             ActivateUI(slidersUI, false);
         }
     }
     else
     {
         Debug.LogError("ShootPlayer script not found in scene");
     }
 }