I don’t know if I’m doing something wrong, but here’s my problem. I created a AudioProcessorGraph and I add a VST to a node. Everything works. But the graph does not get the playHead from my main AudioProcessor. So I just do this:
VstInstance->setPlayHead(getPlayHead());
Which fixes the problem. But, for every new VST I add to the Graph, I need to do this. I also tried doing it for the graph hoping it would make all new VST Instances to get it too, but it doesn’t.
Shouldn’t everything that gets added to the graph follow the “child” PlayHead too?
Wk