Ejemplo n.º 1
0
        /// <summary>
        /// Determines whether the sound instance is fading out.
        /// </summary>
        public bool IsFadingOut(int soundEventID)
        {
            bool result = false;

            if (CurrentlyPlayingSoundEvent(soundEventID))
            {
                SoundEvent soundEvent = GetSoundEventFromID(soundEventID);
                result = soundEvent.IsFadingOut();
            }

            return(result);
        }