Hi there,
I’m wishing to customise the parameters of a ReverbAudioSource object that I’ve implemented to route through to an AudioMixerSource object - to add some reverb to my Synthesiser.
I’ve declared my ReverbAudioSource and Parameters objects as shown here -
ReverbAudioSource reverbSource;
Reverb::Parameters& customParameters;
I’m able to customise the parameters, before passing this Parameters object to the ReverbAudioSource.
However, I’m met with the following error -
Constructor for 'MainContentComponent' must explicitly initialize the reference member 'customParameters'
I’m not sure on how to initialise the Parameters object, would someone be able to advise me?
Thanks !
