Skip to content

raylib.StopSound

JoeStrout edited this page Apr 29, 2026 · 2 revisions

Stop reproducing a sound

Parameters

Parameter Default Value Note
sound

Return value

None.

Notes

Example

raylib.InitAudioDevice
sound = raylib.LoadSound("resources/beep.wav")
raylib.PlaySound sound
raylib.StopSound sound
raylib.UnloadSound sound
raylib.CloseAudioDevice

Clone this wiki locally