We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6484c4 commit 8e65932Copy full SHA for 8e65932
2 files changed
slider.js
@@ -87,6 +87,9 @@ class AudioInputTypeSlider extends Slider{
87
this.propName = "inputType";
88
this.inputSelect = p.createSelect();
89
this.inputSelect.option("Additive Synth");
90
+ this.inputSelect.option("cello");
91
+ this.inputSelect.option("drums");
92
+ this.inputSelect.option("sweep");
93
this.inputSelect.changed(()=>this.settings.inputType = this.inputSelect.value());
94
95
this.oddEvenSel = p.createSelect();
widget.js
@@ -114,6 +114,7 @@ let sliderIdLookups = {
114
}
115
116
function createWidgets() {
117
+ loadAudioSources();
118
let settings = getDefaultSettings();
119
120
const collapseButtons = document.getElementsByClassName("collapse-button");
0 commit comments