Difference between revisions of "Sound.fadeOut"
Jump to navigation
Jump to search
SpatialPlays (talk | contribs) (Adds link to audio generated by the example script) |
m |
||
Line 1: | Line 1: | ||
− | <c>[[Sound]].fadeOut</c> controls how much a sound should fade out at the end in seconds. | + | <c>[[Sound]].fadeOut</c> controls how much a sound should fade out at the end in seconds. If no value is given, a value of 0.01 is used. |
== Examples == | == Examples == |
Latest revision as of 20:52, 1 August 2020
Sound.fadeOut
controls how much a sound should fade out at the end in seconds. If no value is given, a value of 0.01 is used.
Examples
This script produces a comedic falling sound followed by a boom at the end: Link to Generated Audio
slide = new Sound
boom = new Sound
slideDuration = 5
boomDuration = 1
slideFreq = [ noteFreq(84), noteFreq(48) ]
boomFreq = 0.5
slide.init slideDuration, slideFreq, 1, Sound.sineWave
boom.init boomDuration, boomFreq, 1, Sound.noiseWave
slide.fadeOut = 4
boom.fadeOut = 1
slide.play
wait slideDuration
boom.play
See also: Sound.fadeIn
; Sound.envelope