Tone.js/Tone/effect/preset/Phaser.preset.js

31 lines
512 B
JavaScript
Raw Normal View History

define(["Tone/core/Tone", "Tone/effect/Phaser"], function(Tone){
2014-09-05 04:36:55 +00:00
/**
* named presets for the Phaser
* @const
* @static
* @type {Object}
*/
Tone.Phaser.prototype.preset = {
2015-03-03 16:19:53 +00:00
"Testing" : {
2014-09-05 04:36:55 +00:00
"rate" : 10,
"depth" : 0.2,
"Q" : 2,
"baseFrequency" : 700,
},
2015-03-03 16:19:53 +00:00
"Landing" : {
2014-09-11 02:17:16 +00:00
"rate" : 4,
2014-09-05 04:36:55 +00:00
"depth" : 1.2,
"Q" : 20,
"baseFrequency" : 800,
},
2015-03-03 16:19:53 +00:00
"Bubbles" : {
2014-09-11 02:17:16 +00:00
"rate" : 0.5,
"depth" : 5,
"Q" : 8,
"baseFrequency" : 250,
2014-09-05 04:36:55 +00:00
}
};
return Tone.Phaser.prototype.preset;
});