All Projects → Tonejs → Presets

Tonejs / Presets

Licence: other
Sound design starting points for Tone.js.

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects
HTML
75241 projects

Reason

This repo is meant to be a resources for presets and musical inspiration. Contributions are encouraged!

Contribution Guidelines

Please contribute!

Folder

Presets are organized first by instrument/effect and then by the class name.

Naming

Give your preset an original name. You're the author and this could be whatever you want (within reason). Names shouldn't contain any special characters.

JSON

Presets need to be valid JSON and the file must end in .json. Run your preset through a JSON linter to make sure there are no errors. Also make sure that your preset works on the latest version of Tone.js and that it sounds how you want it to.

Using Presets

You can test out presets here. Once you've fine-tuned your preset, use it in the constructor of your object or with the set method.

For example, here is a Distortion preset:

var dist = new Tone.Distortion({
	"distortion" : 0.08
});

Simple as that!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].