Kickstarting help please

Hi
it’s me again :twisted:
I need some help figuring where to start.
i mean, i know where to start, AudioFilterBase.cpp
but what in there do i modify? what am i looking for?

-Edit-
i’ve also built and run the example plugin in FLstudio. what is it? a midi controller? cause it makes no sound :stuck_out_tongue:

You don’t modify anything in AudioFilterBase.cpp! That’s the base class! You do the audio stuff in your own subclass’s processBlock() method. The demo filter just acts as a gain control. though it could create sounds if you wanted it to.

lol oops!!
in my own subclass? ok so if i was editing the juce_vst example plguin, using that as a starting point. what file/files would i want to be looking iat?

Can the Synthesiser classes be used in an audio plugin? Say call Synthesiser::renderNextBlock from processBlock?
Thanks,
Rob

Can the Synthesiser classes be used in an audio plugin? Say call Synthesiser::renderNextBlock from processBlock?
Thanks,
Rob[/quote]

Yes, of course - that’s exactly what it’s designed for!