No Multichannel output
-
@Morphoice I just found this in my script....
//I think this is what Dave was talking about.... Sampler1.asSampler().setUseStaticMatrix(true); Sampler2.asSampler().setUseStaticMatrix(true); Sampler3.asSampler().setUseStaticMatrix(true); Sampler4.asSampler().setUseStaticMatrix(true); Sampler5.asSampler().setUseStaticMatrix(true); Sampler6.asSampler().setUseStaticMatrix(true); Sampler7.asSampler().setUseStaticMatrix(true); Sampler8.asSampler().setUseStaticMatrix(true); Sampler9.asSampler().setUseStaticMatrix(true);I think this is the missing part.
-
@Chazrox still no change.
is the structure a problem`? they are all in a container...

-
@Morphoice Looks the same as mine.

Routing container..

Routing for first 3 samplers in "multi out" mode. See kick starting at 3/4 for me.

-
@Chazrox yep that is exactly how I set it up
-
@Morphoice damn...got me thinking...
Do you have this? Just double checking...
I have this set for my Master container,
const var numBIGDRUMMYVST = Synth.getRoutingMatrix("BIG DRUMMY VST"); numBIGDRUMMYVST.setNumChannels(24);
-
@Chazrox said in No Multichannel output:
const var numBIGDRUMMYVST = Synth.getRoutingMatrix("BIG DRUMMY VST");
numBIGDRUMMYVST.setNumChannels(24);
that changes nothing either ;/
-
@Morphoice make a minimal test project that demonstrates the issue and share it here so we can try
-
@Morphoice grr..
-
I fiddled about a little and this script finally worked:
const var MorphDrum = Synth.getChildSynth("MorphDrum"); const var matrix = MorphDrum.getRoutingMatrix(); matrix.addConnection(0,0); matrix.addConnection(1,1); matrix.addConnection(2,2); matrix.addConnection(3,3); matrix.addConnection(4,4); matrix.addConnection(5,5); matrix.addConnection(6,6); matrix.addConnection(7,7); matrix.addConnection(8,8); ...apparently I was quite close already, but it does indeed need the script to do the addConnection and won't work without. Thanks for the help! I would never have figured that out on my own
-
@Morphoice yeee! Let go!
