audio-vis/raw/javascript/visuals/water.js

15 lines
247 B
JavaScript

//animate Water the way like the Audio is Coming... 256FFT-Size max!
class Water extends Visual {
constructor() {
super();
this.name = "Water";
}
draw() {
}
setup() {
audioHandler.fftSize(256)
}
}