StopAllTrackedSounds
From OxeyeWiki
(Difference between revisions)
(Created page with '{{AudioMethod | audio.stopAllTrackedSounds() | Stops all audio started with audio.startTrackedSound | {{NoParams}} | Returns nothing. }} === Example === <pre> for i=1,20 d...') |
(→Example) |
||
Line 12: | Line 12: | ||
<pre> | <pre> | ||
for i=1,20 do | for i=1,20 do | ||
- | audio.startTrackedSound(" | + | audio.startTrackedSound("annoyingSound.wav") |
end | end | ||
audio.stopAllTrackedSounds() | audio.stopAllTrackedSounds() | ||
</pre> | </pre> |
Latest revision as of 13:41, 18 January 2010
audio.stopAllTrackedSounds() | ||
Stops all audio started with audio.startTrackedSound | ||
Parameter | Expected Type | Description |
No parameters | ||
Returns | ||
Returns nothing. |
Daisymoon Audio Lib |
---|
Example
for i=1,20 do audio.startTrackedSound("annoyingSound.wav") end audio.stopAllTrackedSounds()