/// <summary> /// Determines whether the sound instance is fading in. /// </summary> public bool IsFadingIn(int soundEventID) { bool result = false; if (CurrentlyPlayingSoundEvent(soundEventID)) { SoundEvent soundEvent = GetSoundEventFromID(soundEventID); result = soundEvent.IsFadingIn(); } return(result); }