-
Notifications
You must be signed in to change notification settings - Fork 2
raylib.IsAudioStreamPlaying
JoeStrout edited this page Apr 29, 2026
·
2 revisions
Check if audio stream is playing
| Parameter | Default Value | Note |
|---|---|---|
| stream |
| Condition | Return Value |
|---|---|
| (always) | number |
raylib.InitAudioDevice
stream = raylib.LoadAudioStream(44100, 32, 1)
raylib.PlayAudioStream stream
print "Playing: " + raylib.IsAudioStreamPlaying(stream)
raylib.UnloadAudioStream stream
raylib.CloseAudioDevice