audio_pause_music

Pauses the indicated music track (OBSOLETED).

Syntax:

audio_pause_music();


Returns: N/A


Description

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.


Example:

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.


Back: Audio
Next: audio_resume_music
© Copyright YoYo Games Ltd. 2018 All Rights Reserved