OnSoundFinished: Difference between revisions
From Onset Developer Wiki
m Removed the sound functions tag, keeping the sound events tag. |
No edit summary |
||
Line 1: | Line 1: | ||
{{Info|Event|Client|1.0}} | {{Info|Event|Client|1.0}} | ||
{{FuncDescription|Called when a sound created by [[CreateSound]] or [[CreateSound3D]] stopped playing | {{FuncDescription|Called when a sound created by [[CreateSound]] or [[CreateSound3D]] stopped playing.}} | ||
{{FuncSyntax|OnSoundFinished(sound)}} | {{FuncSyntax|OnSoundFinished(sound)}} |
Latest revision as of 10:45, 7 July 2020
Description
Called when a sound created by CreateSound or CreateSound3D stopped playing.
Syntax
OnSoundFinished(sound)
Parameters
- sound
The sound identifier.
Example
AddEvent("OnSoundFinished", function(sound)
AddPlayerChat("Sound ID " .. sound .. " has finished playing!")
end)