rserota / wad

Web Audio DAW. Use the Web Audio API for dynamic sound synthesis. It's like jQuery for your ears.
MIT License
1.9k stars 160 forks source link

Added exactTime parameter for more precise timing #24

Closed waynerad closed 9 years ago

waynerad commented 9 years ago

Added exactTime parameter for more precise timing than is possible with "wait" parameter.

Works by checking to see if exactTime exists and if it doesn't, creating it with a default value of context.currentTime + arg.wait. Subsequently, exactTime is used in place of context.currentTime + arg.wait.

rserota commented 9 years ago

Looks good. Thanks for contributing!

waynerad commented 9 years ago

You're welcome!