15 lines
247 B
JavaScript
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)
|
|
}
|
|
|
|
} |