2014-09-05 04:36:55 +00:00
|
|
|
define(["Tone/core/Tone", "Tone/effect/AutoWah"], function(Tone){
|
|
|
|
|
|
|
|
/**
|
|
|
|
* named presets for the Phaser
|
|
|
|
* @const
|
|
|
|
* @static
|
|
|
|
* @type {Object}
|
|
|
|
*/
|
|
|
|
Tone.Phaser.prototype.preset = {
|
|
|
|
"testing" : {
|
|
|
|
"rate" : 10,
|
|
|
|
"depth" : 0.2,
|
|
|
|
"Q" : 2,
|
|
|
|
"baseFrequency" : 700,
|
|
|
|
"feedback" : 0
|
|
|
|
},
|
|
|
|
"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,
|
|
|
|
"feedback" : 0.9
|
|
|
|
},
|
|
|
|
"bubbles" : {
|
2014-09-11 02:17:16 +00:00
|
|
|
"rate" : 0.5,
|
|
|
|
"depth" : 5,
|
|
|
|
"Q" : 8,
|
|
|
|
"baseFrequency" : 250,
|
|
|
|
"feedback" : 0.5
|
2014-09-05 04:36:55 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return Tone.Phaser.prototype.preset;
|
|
|
|
});
|