Guest User

Untitled

a guest
Oct 21st, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. const up = {
  2. wave: 'sine',
  3. freq: {
  4. start: 392,
  5. end: 493.88,
  6. },
  7. volume: 1,
  8. duration: 0.2,
  9. };
  10.  
  11. const downGood = {
  12. wave: 'sine',
  13. freq: {
  14. start: 493.88,
  15. end: 698.46,
  16. },
  17. volume: 1,
  18. duration: 0.1,
  19. };
  20.  
  21. const downBad = {
  22. wave: 'sine',
  23. freq: {
  24. start: 587.33,
  25. end: 392,
  26. },
  27. volume: 1,
  28. duration: 0.1,
  29. };
  30.  
  31. const swap = {
  32. wave: 'sine',
  33. freq: {
  34. start: 880,
  35. end: 1760,
  36. },
  37. volume: 0.2,
  38. duration: 0.06,
  39. };
  40.  
  41. const synthPresets = {
  42. up,
  43. downBad,
  44. downGood,
  45. swap,
  46. };
  47.  
  48. export default synthPresets;
Add Comment
Please, Sign In to add comment