StopTrackedSound
From OxeyeWiki
(Difference between revisions)
(Created page with '{{AudioMethod | audio.stopTrackedSound(soundId) | Stops a tracked sound based on the soundId. | {{MethodParam|soundId|A number|The id number returned by daisy.[[startTrackedSound...') |
m |
||
| Line 5: | Line 5: | ||
Stops a tracked sound based on the soundId. | Stops a tracked sound based on the soundId. | ||
| | | | ||
| - | {{MethodParam|soundId|A number|The id number returned by | + | {{MethodParam|soundId|A number|The id number returned by audio.[[startTrackedSound]]}} |
| | | | ||
Returns nothing. | Returns nothing. | ||
Latest revision as of 13:43, 18 January 2010
|
audio.stopTrackedSound(soundId) | ||
|
Stops a tracked sound based on the soundId. | ||
| Parameter | Expected Type | Description |
| soundId | A number | The id number returned by audio.startTrackedSound |
| Returns | ||
|
Returns nothing. | ||
| Daisymoon Audio Lib |
|---|
Example
local mySound = audio.startTrackedSound("bulletSwish.wav")
audio.stopTrackedSound(mySound)