Guest User

Untitled

a guest
Oct 21st, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. const duration = 0.2;
  2. const volume = {
  3. min: 0.001,
  4. max: 1,
  5. };
  6.  
  7. gainNode.gain.setValueAtTime(
  8. volume.min,
  9. context.currentTime
  10. );
  11.  
  12. gainNode.gain.exponentialRampToValueAtTime(
  13. volume.max,
  14. context.currentTime + duration
  15. );
  16.  
  17. oscNode.start();
Add Comment
Please, Sign In to add comment