RING BUFFER for FFT DISPLAY----
-
Im trying to get the FFT display to process/display 18 channels instead of 2. I have all channels routed in the routing matrix of the module and inside of the script fx module via another routing matrix but it only processes the first stereo.
What does this number do? How can I get the ring buffer to watch more than 2 channels?
Do I have to create a new RBO for each channel? -
C Chazrox marked this topic as a question
-
@Chazrox That number is just an index so that if you have more than one you can refer to them separately.
-
@d-healey is that the channel index? Does that mean I can just create another RBO with (1) , (2), and so on...?
-
@Chazrox said in RING BUFFER for FFT DISPLAY----:
is that the channel index?
No, it's an index for the object. So if you have 10 of them you could number them 0 - 9, or 21 - 30, it's just an ID essentially.
-
@d-healey makes sense. Thanks.