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.}}
 
As per 1.0.2, this event is not working properly and is being investigated.}}


{{FuncSyntax|OnSoundFinished(sound)}}
{{FuncSyntax|OnSoundFinished(sound)}}

Latest revision as of 10:45, 7 July 2020

OnSoundFinished

Type: Event
Context: Client
Introduced: v1.0

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)

See also