I'm new to both AudioKit and stack overflow, sorry if I'm not asking this in the correct way.
I'm trying to figure out how to modulate the frequency of one AKFMOscillator with the output of another oscillator, so that they would work more like the operators of an FM synth. If I understand correctly , AKFMOscillators have their own built in modulation source, but I'd like to be able to stack multiple modulators so that I can set up algorithms like on an FM synth, however nothing I've tried so far works. I've gotten some results doing this:
var oscillatorOne = AKFMOscillator()
var oscillatorTwo = AKFMOscillator()
oscillatorOne.modulatingMultiplier = oscillatorTwo
but that's not really doing the right thing. Is this even possible? Thanks for any advice.