public bool PlaySFX(bool force = true)
 {
     if (force || !IsSFXPlaying)
     {
         SFXAudioSourceComponent.Play();
         return(true);
     }
     return(false);
 }
 public void StopSFX()
 {
     SFXAudioSourceComponent.Stop();
 }