Forum
    • Categories
    • Register
    • Login
    1. Home
    2. voxuer1
    3. Topics
    • Profile
    • Following 0
    • Followers 0
    • Topics 14
    • Posts 66
    • Groups 0

    Topics

    • voxuer1V

      Rnbo-ScriptFX

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      0 Votes
      2 Posts
      98 Views
      ulrikU

      @voxuer1 Yes, I have only tried as FX plugins, both on Mac and Windows, au & vst3.
      It's working as it should

    • voxuer1V

      RNBO effect bypassed in exported VST3 (works perfectly in HISE editor via Script FX / Global Cables)

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      19
      0 Votes
      19 Posts
      331 Views
      HISEnbergH

      @voxuer1 nice glad it worked!

    • voxuer1V

      Best practice for Real-Time Metering: How to pass dynamic peak values from RNBO to HISE UI?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      9
      0 Votes
      9 Posts
      457 Views
      voxuer1V

      @Christoph-Hart said in Best practice for Real-Time Metering: How to pass dynamic peak values from RNBO to HISE UI?:

      ah here you hit a real limitation - multiple modulation outputs are not supported for RNBO at the moment.

      According to your screenshot the second one is just a peak hold - if you replicate this in scriptnode you should be able to get by with a single output.

      Ah, ok, yes that´s a good idea, thanx

    • voxuer1V

      Updating an existing RNBO export in HISE 4.1

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      170 Views
      voxuer1V

      @David-Healey Bildschirmfoto 2026-05-11 um 08.17.22.png

    • voxuer1V

      How to visualize RNBO outports (peak data) in Scriptnode?

      Watching Ignoring Scheduled Pinned Locked Moved ScriptNode
      2
      0 Votes
      2 Posts
      98 Views
      No one has replied
    • voxuer1V

      Stuck in Wizard / VST SDK Error - Path is correct but no "Green Checkmarks"

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      263 Views
      voxuer1V

      @David-Healey I finally managed to get a successful VST3 export! "BUILD SUCCEEDED" in the terminal.

      What fixed the SDK error: The issue was indeed the VST3 SDK path. I had to point it exactly to the folder containing the base, public.sdk, and pluginterfaces directories. After correcting this in the Projucer Global Paths, the "SDK missing" error disappeared.

    • voxuer1V

      RNBO Integration in HISE 4.1.0: Updated Workflow for Hardcoded-style DSP Networks?

      Watching Ignoring Scheduled Pinned Locked Moved C++ Development
      25
      0 Votes
      25 Posts
      1k Views
      DanHD

      @DanH said in RNBO Integration in HISE 4.1.0: Updated Workflow for Hardcoded-style DSP Networks?:

      @voxuer1 so I'm on RNBO 1.4.2 and everything works fine

    • voxuer1V

      Selling a HISE-based Plugin under GPLv3 – Compliance Questions

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      502 Views
      voxuer1V

      @d-healey ok, thank you, that helps

    • voxuer1V

      Issue with Importing Transparent PNG Logos in HISE on Windows

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      4
      0 Votes
      4 Posts
      753 Views
      OrvillainO

      @voxuer1 This'll most likely be some Windows rendering issue with JUCE. Probably not something Christoph is going to address himself, and it might not be addressable by the JUCE team either.

      All said and done, you're almost certainly going to be much better off rendering out the exactly resolution you need, both in terms of memory efficiency, and also future proofing.

      If you need to support different resolutions, and you can't just turn your SVG's into SVG paths using the Projucer SVG Path converter, then you should export your PNG at different scales and choose the right file to insert at runtime based on a global scale factor.

    • voxuer1V

      Save Presets in VST Export

      Watching Ignoring Scheduled Pinned Locked Moved Presets / Scripts / Ideas
      3
      0 Votes
      3 Posts
      670 Views
      voxuer1V

      @d-healey yes, that´s it, thanx

    • voxuer1V

      Presets

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      13
      0 Votes
      13 Posts
      2k Views
      David HealeyD

      @voxuer1 You don't need to split them when selecting/loading the preset, you only need to do that for displaying them.

    • voxuer1V

      Tooltips

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      4
      0 Votes
      4 Posts
      581 Views
      voxuer1V

      @d-healey I did it, broadcaster was the right tool!

    • voxuer1V

      Combo Box print Value

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      12
      0 Votes
      12 Posts
      1k Views
      David HealeyD

      @voxuer1 That means the thing on the left side of the dot doesn't have a function with that name. You probably need to get the reference to your module in a different way.

    • voxuer1V

      Connect Slider Value

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      10
      0 Votes
      10 Posts
      2k Views
      voxuer1V

      @voxuer1 working code

      const var Speed = Content.getComponent("Speed");
      const var SpeedValue = Content.getComponent("SpeedValue");

      inline function onSpeedControl(component, value)
      {
      local formattedValue = Engine.doubleToString(value, 2);
      SpeedValue.set("text", formattedValue);
      Console.print("Slider Value: " + formattedValue);
      };

      Content.getComponent("Speed").setControlCallback(onSpeedControl);