private void Update()
 {
     if (Input.GetKeyDown(KeyCode.Alpha3))
     {
         TurretManager.UnlockAt(2);
     }
     else if (Input.GetKeyDown(KeyCode.Alpha4))
     {
         TurretManager.UnlockAt(3);
     }
 }