table of contents
- experimental 3~git20250302~78a2035+ds-1
Mix_FadeOutMusic(3) | SDL_mixer3 FUNCTIONS | Mix_FadeOutMusic(3) |
NAME¶
Mix_FadeOutMusic - Halt the music stream after fading it out for a specified time.
HEADER FILE¶
Defined in SDL3_mixer/SDL_mixer.h
SYNOPSIS¶
#include "SDL3_mixer/SDL_mixer.h"
bool Mix_FadeOutMusic(int ms);
DESCRIPTION¶
This will begin the music fading from its current volume to silence over ms milliseconds. After that time, the music is halted.
Any halted music will call any callback specified by
Mix_HookMusicFinished () once the halt occurs.
Fading music will change it's volume progressively, as if
Mix_VolumeMusic () was called on it (which is to say: you probably shouldn't call Mix_VolumeMusic () on a fading channel).
Note that this function does not block for the number of milliseconds requested; it just schedules the music to fade and notes the time for the mixer to manage later, and returns immediately.
FUNCTION PARAMETERS¶
- ms
- number of milliseconds to fade before halting the channel.
RETURN VALUE¶
Returns true if music was scheduled to fade, false otherwise. If no music is currently playing, this returns false.
AVAILABILITY¶
This function is available since SDL_mixer 3.0.0.
SDL_mixer 3.0.0 | SDL_mixer |