table of contents
other versions
- experimental 3~git20250302~78a2035+ds-1
Mix_SetMusicPosition(3) | SDL_mixer3 FUNCTIONS | Mix_SetMusicPosition(3) |
NAME¶
Mix_SetMusicPosition - Set the current position in the music stream, in seconds.
HEADER FILE¶
Defined in SDL3_mixer/SDL_mixer.h
SYNOPSIS¶
#include "SDL3_mixer/SDL_mixer.h"
bool Mix_SetMusicPosition(double position);
DESCRIPTION¶
To convert from milliseconds, divide by 1000.0.
This function is only implemented for MOD music formats (set pattern order number) and for WAV, OGG, FLAC, MP3, and MODPLUG music at the moment.
FUNCTION PARAMETERS¶
- position
- the new position, in seconds (as a double).
RETURN VALUE¶
Returns true on success or false on failure; call SDL_GetError() for more information.
AVAILABILITY¶
This function is available since SDL_mixer 3.0.0.
SDL_mixer 3.0.0 | SDL_mixer |