Example #1
0
 public void SetMusicPitch(Single pitch)
 {
     if (this.activeSound.SoundProfileType == SoundProfileType.Music)
     {
         SoundLib.SetMusicPitch(pitch);
     }
     else if (this.activeSound.SoundProfileType == SoundProfileType.MovieAudio)
     {
         SoundLib.movieAudioPlayer.SetMusicPitch(pitch);
     }
 }