audio_pause_music();
Returns: N/A
WARNING! This function has been obsoleted and you should use audio_pause_sound instead.
With this function you can pause a music track that is currently playing.
if keyboard_check_pressed(ord("P"))
{
global.Pause = !global.Pause;
if global.Pause
{
audio_pause_music();
}
else
{
audio_resume_music();
}
}
The above code checks for a press of the keyboard key "P" and if it detects one it sets the global variable "Pause" to true or false and then either pauses the music or it resumes the music from its paused state depending on the returned value.