• 0 Votes
    7 Posts
    348 Views
    P

    @Sifres I just went and looked... That looks SO great.

  • Jump to DAW playback position

    Solved Scripting
    10
    0 Votes
    10 Posts
    1k Views
    Matt_SFM

    @ulrik Ok, I'm not completely useless then 😂

    It's the first time I'm using midi clips in a plugin so...
    Thank you again for your help, it's much appreciated !

  • 0 Votes
    10 Posts
    2k Views
    S

    @oskarsh i was having this same issue (and a lot of others when testing a hardcoded Faust FX swapping/reordering plugin idea lol) but what worked for this same DAW crashing bug (with Claude's help) was in the Hise source code changing this line in the "/HISE-develop/hi_core/hi_modules/hardcoded/HardcodedModuleBase.cpp" file from

    HardcodedSwappableEffect::~HardcodedSwappableEffect() { jassert(shutdownCalled); jassert(disconnected); factory = nullptr; }

    to

    HardcodedSwappableEffect::~HardcodedSwappableEffect() { if (!shutdownCalled) shutdown(); factory = nullptr; }

    then rebuilding HISE and compiling the plugin again

    i want to also clarify i am definitely not an expert at this stuff , but maybe this can help someone in the right direction or for @Christoph-Hart to fix this bug ! the creative potential in easy reordering of is so huge im excited to see it grow

  • Plugin crashes Daw

    General Questions
    11
    0 Votes
    11 Posts
    2k Views
    David HealeyD

    @StephanS said in Plugin crashes Daw:

    have compiled a debug version and it's the same Problem. Plugin is crashing the daw and Standalone Version do not open at all.

    Did you attempt to debug the standalone version with Visual Studio?

    @StephanS said in Plugin crashes Daw:

    I have build Hise now several times and with several Versions of VS but it's all the same.

    That won't make any difference so don't worry about doing this.

    @StephanS said in Plugin crashes Daw:

    Is it possible to check the vst3 plugin after compile if anything is OK or can someone check it for me?

    Send me your entire project - without the samples (if there are any).

  • EQ changes saved in DAW

    General Questions
    6
    0 Votes
    6 Posts
    1k Views
    R

    @rzrsharpeprod
    Just in case anybody stumbles across this thread in search of a solution to a similar problem I have figured it out.

    I was calling it using a callback so it actually wasn't working at all.
    What I had mistake for a preset loading an EQ was just how I had left the default in HISE when I exported.

    Once I took it out of the callback and called it on its own it worked fine - both the default/saved in the presets that I made in HISE and any changes in DAW were retained in that project when reloading it. Happy days...