๐ŸŽง Tone.js Effects

Tone.js offers a variety of built-in audio effects that you can use to enhance your sounds. These include Reverb, Delay, Distortion, Chorus, and more. Effects can be chained between instruments and speakers.

๐Ÿ”Š Example: Delay Effect

Delay effect will play here...
๐Ÿ’ก FeedbackDelay repeats the sound after a delay with feedback (looping echoes). Great for ambient effects.

๐Ÿ”ฅ Common Effects in Tone.js

๐Ÿ’ฅ Example: Reverb Effect

Reverb effect will play here...
๐ŸŒŠ Reverb adds space to your sound โ€” increase decay for longer trails.

โš ๏ธ Tip: Chaining Effects

You can chain multiple effects together using `.connect()` like this:


synth.connect(distortion).connect(reverb).toDestination();
  

๐Ÿงช Experiment Challenge

Try combining Chorus, Reverb, and AutoFilter to create your own sci-fi pad sound!