Passing a Reference to an Effect?
-
I must be doing this wrong - does anyone know how to do it? Cheers.
const var myHISEConvolutionRvb = Synth.getAudioSampleProcessor("myHISEConvolutionRvb"); inline function GetRvbID (theRvb) { Console.print(theRvb.getId()); } GetRvbID (myHISEConvolutionRvb);
I'm getting this:
Screenshot 2024-03-29 at 20.03.58
…which makes think of casting the type, but that's not necessary as per:
…which means I must be missing something obvious.
Thanks and cheers.
-
@clevername27 Try
getId()
-
@d-healey Thanks for reading - I accidentally typed that incorrectly into my form post. (I've been using getId.)
-
@clevername27
Do you have a snippet that demonstrates the issue?AudioSampleProcessor doesn't have a getId() function
-
@d-healey Thank you, Dave.
-