public void ChangeSoundState()
 {
     audioSource.enabled = !audioSource.enabled;
     if (uiController != null)
     {
         uiController.SetSoundActive(audioSource.enabled);
     }
 }