HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. Recent
    Log in to post
    Load new posts
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All categories
    • All tags
    • whoopsydoodleW

      Hise general and compiler settings not saving

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      8
      0 Votes
      8 Posts
      114 Views
      whoopsydoodleW

      @d-healey Yah I'm assuming that must be the case. I'm going to try a fresh pull and build.

    • LindonL

      Clone ScriptNode - getting a simple value passed in...

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      97 Views
      LindonL

      @ulrik said in Clone ScriptNode - getting a simpel value passed in...

      Thanks Ulrik, how did I miss that?

      LMP

    • ustkU

      Modulation Matrix header and plotter CSS

      Watching Ignoring Scheduled Pinned Locked Moved Solved General Questions
      5
      1 Votes
      5 Posts
      638 Views
      ustkU

      @Christoph-Hart The plotter looks very rough... Are we able to get a better resolution?
      It even looks like the resolution is not the only problem but the path construction itself... a stride value not optimised?

      Screenshot 2025-11-10 at 13.37.27.png

    • dannytaurusD

      Quick performance question

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      102 Views
      griffinboyG

      @dannytaurus

      Multiple wavetable synths will use a lot of memory.
      Christoph's WT engine creates mipmaps (multiple antialiased copies of the wavetable).
      If you have multiple WTs loaded into separate WT engines simultaneously, each one will have multiple copies of the wavetable.

      However, this memory is probably still small compared to say, a regular multisampler... However 100 wavetables is gonna get big I can imagine you could pass the GB mark of ram usage.

      Can't speak for cpu, you can try it but I'd assume cpu is okay as long as you don't have the inactive synths do any processing when silent.

      If you are trying to acheive clickless swapping or something (idk if the WT engine does this already? Or what your goal is with having multiple WT engines - fast loading maybe??? No silence dropout???)
      You could just have two WT engines, keep one silent, and use the silent one to load the new wavetable, once ready, volume fade between them. Then you get a seamless handover to a new engine.

    • T

      Is there a way to bypass a single SNEX Shaper node in ScriptFX1 while keeping other nodes active?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      2
      0 Votes
      2 Posts
      51 Views
      d.healeyD

      @Taihongcraft But the node within a soft bypass node

    • ulrikU

      Stretch player node

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      1
      0 Votes
      1 Posts
      40 Views
      No one has replied
    • ChazroxC

      Background Task || Help me understand this please.

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Scripting
      9
      0 Votes
      9 Posts
      159 Views
      ChazroxC

      @ustk aaahhhh here you go! haha. I gotta see this...brb.

    • B

      Control velocity from each incoming midi note with a Knob / Slider?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      7
      0 Votes
      7 Posts
      123 Views
      d.healeyD

      @Rognvald You can put it all in the interface MIDI processor if you want to keep things simple - just avoid doing any UI stuff in the MIDI callbacks.

      // This sort of thing should be avoided in a non-deferred script. Buttons[index].setValue(true); Buttons[index].changed();

      However the ideal situation is you separate UI logic from MIDI processing by using separate processors for individual tasks.

      You can add the velocity code I described above alongside your current script.

      Those reg variables you have should most likely be const. Rule of thumb is if the values are fixed (or it's an array or object) use a const. If the value is going to be dynamic then use a reg.

    • ChazroxC

      BackgroundTask.setFinishedCallback() || How to get status....

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Scripting
      1
      0 Votes
      1 Posts
      34 Views
      No one has replied
    • iamlampreyI

      Ableton Automation can't do math?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      124 Views
      ChazroxC

      @iamlamprey Looks like the value is being normalized somewhere.

    • T

      SNEX Distortion parameter not responding to ScriptFX knob connection

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      115 Views
      T

      @ustk
      Thanks for your help. I set the AllowCompilation flag in the DSP Network’s properties, compiled the network, and exported the DLL. The effect now works — but I’m still getting the prompt:
      “You don’t need to wrap the root node. Just tick the AllowCompilation flag in the properties, save this network and export the DLL.”

      Do you know why the prompt keeps appearing even after I’ve done that?
      I appreciate any guidance.
      Thanks again!

      Best,

      Capture d'écran 2025-11-08 013223.png Capture d'écran 2025-11-08 014654.png Capture d'écran 2025-11-08 175324.png

    • ustkU

      Modulation Matrix issues and improvements

      Watching Ignoring Scheduled Pinned Locked Moved Solved General Questions
      5
      2 Votes
      5 Posts
      242 Views
      dannytaurusD

      @ustk Awesome! 😂

    • D

      Unlocker - How to use?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      145 Views
      ustkU

      @Dan-Korneff Did the same, seems robust enough 👍

    • dannytaurusD

      TooltipPanel new Fade and ShowIcon data properties (PR help please!)

      Watching Ignoring Scheduled Pinned Locked Moved Solved General Questions
      7
      0 Votes
      7 Posts
      158 Views
      dannytaurusD

      @ustk Thanks for the pointer. I added another commit other than the PR to ensure the new props are shown in the Data section of the UI.

    • ChazroxC

      Syntax Error ?

      Watching Ignoring Scheduled Pinned Locked Moved Solved Scripting
      5
      0 Votes
      5 Posts
      93 Views
      ChazroxC

      @Lindon I havent gotten that one much before. I get whats happening now. 🙏

    • dannytaurusD

      Randomise start point of LFO Modulator?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      95 Views
      dannytaurusD

      @Oli-Ullmann By "free-running" I mean not reset on NoteOn events. And yeah, I found the IgnoreNoteOn parameter right after my last post 😂

      Thanks anyway! 🙌

    • ChazroxC

      Setting ControlCallback w/ Loops ?

      Watching Ignoring Scheduled Pinned Locked Moved Solved Scripting
      17
      0 Votes
      17 Posts
      213 Views
      Oli UllmannO

      @d-healey
      Yes, that's right! Thanks for the tip! :-)

    • OrvillainO

      User presets not showing up in exported plugin

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      7
      0 Votes
      7 Posts
      146 Views
      d.healeyD

      @Orvillain Have you enabled the global app data folder on MacOS in project preferences?

    • LindonL

      Setting slider pack value at position(index) when its in a ScriptProcessor....

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      96 Views
      LindonL

      @d-healey thanks. I ended up going back to Globals and FixObjectArrays as Im actually using values all over the place...., it makes me shiver a bit but hey .....

    • It_UsedI

      Hise can't save hr file with hxi metadata.

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      13
      0 Votes
      13 Posts
      363 Views
      It_UsedI

      @d-healey yeah