Forum
    • Categories
    • Register
    • Login
    1. Home
    2. Morphoice
    3. Posts
    • Profile
    • Following 5
    • Followers 1
    • Topics 152
    • Posts 859
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: recompiled plugin, cubase cid changed, projects wont load

      @dannytaurus no nothing changed except the plugin version in project settings. the hise version was around half a year newer from the one i last compiled it with on the develop branch

      posted in General Questions
      MorphoiceM
      Morphoice
    • RE: recompiled plugin, cubase cid changed, projects wont load

      @dannytaurus how would I know? i have no idea how to display them, the cubase project files are binaries that can't be read with a text editor

      posted in General Questions
      MorphoiceM
      Morphoice
    • RE: recompiled plugin, cubase cid changed, projects wont load

      @dannytaurus it is and has always been a custom code that didn't change on recompiling. I paid extra attention on that. only the version number changed from 1.0.11 to 1.0.12

      posted in General Questions
      MorphoiceM
      Morphoice
    • recompiled plugin, cubase cid changed, projects wont load

      I recompiled my plugin with a minor change in the dsp network,
      all the same project settings as before but the plugin suddenly has another cid in cubase
      and all my past projects wont load it. it works fine if i reload it as a new plugin but it has a different id inside cubase.

      there hasn't anything been changed platform wise, both were vst3, it's just made with a newer version of HISE...

      anyone encountered this before and has any ideas how to fix?

      merry Christmas

      posted in General Questions
      MorphoiceM
      Morphoice
    • RE: No Multichannel output

      @Chazrox @David-Healey

      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

      posted in General Questions
      MorphoiceM
      Morphoice
    • RE: No Multichannel output

      @Chazrox said in No Multichannel output:

      const var numBIGDRUMMYVST = Synth.getRoutingMatrix("BIG DRUMMY VST");

      numBIGDRUMMYVST.setNumChannels(24);

      that changes nothing either ;/

      posted in General Questions
      MorphoiceM
      Morphoice
    • RE: No Multichannel output

      @Chazrox yep that is exactly how I set it up

      posted in General Questions
      MorphoiceM
      Morphoice
    • RE: No Multichannel output

      @Chazrox still no change.
      is the structure a problem`? they are all in a container...
      Screenshot 2025-12-16 at 18.50.37.png

      posted in General Questions
      MorphoiceM
      Morphoice
    • RE: No Multichannel output

      @Chazrox nop the script made no change

      posted in General Questions
      MorphoiceM
      Morphoice
    • RE: No Multichannel output

      @Chazrox the daw setup is fine and just as with every other plugin, probably the initscript is missing.... i'll check if its needed

      posted in General Questions
      MorphoiceM
      Morphoice
    • RE: No Multichannel output

      @David-Healey is the script necessary if the routing doesnt need to dynamically change? from what I understand how I set things up should have sufficed, at least in hise all channels show their routed audio, just not in cubase, there everything is on 1+2 again

      posted in General Questions
      MorphoiceM
      Morphoice
    • RE: No Multichannel output

      @Chazrox i didnt understand any of the first sentence but as for the second, yes 1+2 is having all the content of the entire plugin, although in hise anything except the kick is routet to channels 3 and above

      posted in General Questions
      MorphoiceM
      Morphoice
    • No Multichannel output

      Ahoi,

      I have setup 16 channels and routed each sound of my drum plugin to a channel
      it looks right in HISE, but when i compile the project and run the plugin in a DAW
      even with all multi outputs switched on it still just plays through the main 1+2

      what am I missing?

      screenshot-2025-12-14-at-17.26.59.png

      screenshot-2025-12-14-at-17.31.05-resized.png

      are there any tutorials or documentation on how to handle multichannel?

      posted in General Questions
      MorphoiceM
      Morphoice
    • RE: Multichannel state of things

      @dannytaurus that makes sense

      posted in General Questions
      MorphoiceM
      Morphoice
    • RE: Multichannel state of things

      Awesome! What would be the best practice for a linndrum thingy? I have a gated reverb using the convolution, so that would either require me to have 16 instances of it for each drum sound or use it as a send effect which kind of defeats the whole idea of letting the user process individual channels. so compression and reverb are probably best removed.

      usually drum samples are mono, so with 16 channels i could have every pad sent to an output, however that would be total overkill in the daw. also having the output sent to mono channels in some daws doesnt let you use stereo plugins on them. so it would be best toe.g. have 8 stereo outputs and give the user a sort of routing page to select which sound should be in which channel.... or maybe predefined them in groups? Kick, Snare, Toms, Hats, Clap, Perc... which is how I myself would usually setup my mixes... then maybe have a FX channel for the verb again....

      decisions, decisions....

      posted in General Questions
      MorphoiceM
      Morphoice