Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. /// @description any_audio_is_playing()
  2. /// @function any_audio_is_playing
  3.  
  4. for (var i = 0; true; i++)
  5. {
  6. if !audio_exists(i)
  7. return false
  8. if audio_is_playing(i)
  9. return true;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement