10 lines
174 B
JavaScript
10 lines
174 B
JavaScript
|
//animate Water the way like the Audio is Coming... 256FFT-Size max!
|
||
|
class Water extends Visual {
|
||
|
draw() {
|
||
|
}
|
||
|
|
||
|
setup() {
|
||
|
audioHandler.fftSize(256)
|
||
|
}
|
||
|
|
||
|
}
|