Categories

  • Let's discuss the latest AI tech and how it influences your life as a HISE developer.

    12 Topics
    170 Posts
    David HealeyD

    @xxx Images will distort when their size is changed, but it will work.

  • General questions and announcements about HISE

    8k Topics
    74k Posts
    HISEnbergH

    Personally I use panels in most cases as well.

    In your case, I know all of my components begin with a prefix indicating their type.
    Examples:

    knb: knobs btn: buttons lbl: labels

    I do this to be able to assign LAFs. control callbacks, etc. as I want.
    Assuming you did something similar, it would be simple enough at the outset of your project to format all the labels as you want:

    const var labels = Content.getAllComponents("lbl"); for (l in labels) l.set("editable", false);

    Editing the HISE source code is a quicker, more permanent recommendation.

  • Scripting related questions and answers

    2k Topics
    16k Posts
    ChazroxC

    @David-Healey Thanks! I ended up figuring it out from an old post you advised on as well. lol. Attached the callback to a slider with 'save in preset' loaded that triggers the callback on preset load.

  • To share HiseSnippets, Interface Elements, GUI, UI/UX, Panel LAF etc..

    197 Topics
    2k Posts
    jadgJ

    Here is a video where you can see better the visual details:
    Fully customized pseudo backlit interface via LAF

  • All about ScriptNode DSP nodes, patches, SNEX and recipes.

    364 Topics
    2k Posts
    S

    @David-Healey thank you very much. Yes, it was a bug. I have compiled HISE from the github following your excellent tutorial and everything is fine. Strange, nobody had the issue as well.

  • A subforum for discussing Faust development within HISE

    115 Topics
    943 Posts
    LindonL

    @mehmethand if I remember correctly you have to go back a couple of versions of Faust, theres a post about it round here I think...the one Im using seems to be dated 19.6.2024 so its quite old - but servicable...

  • If you need a certain feature, post it here.
    626 Topics
    5k Posts
    J

    @David-Healey ok got it

  • Develop better software through collaboration and shared knowledge. Not just about coding —> covering the entire journey, from development to launching and promoting plugins or software.

    161 Topics
    1k Posts
    N

    c784527d-bff2-4fb6-8668-569a25adb100-image.png

    hi guys, im planning to make a fx plugin with envelopes can anyone give me an example to how to setup this thing in script fx, thank you😊

  • If you encounter any bug, post it here.
    2k Topics
    12k Posts
    L

    Hi,

    I'm experiencing a display issue with the flex_ahdsr envelope's Mode parameter in ScriptNode.

    In my older HISE version, the Mode parameter correctly displays the text labels: Trigger, Note, Loop.

    In my newer (latest) HISE version, the same parameter now displays raw numeric values (0.0 -> 10.0) instead of the text labels.

    Screenshots:
    Capture d’écran 2026-04-09 à 14.38.46.png
    b1096939-394c-4325-8098-e54887c13eb9-Image PNG.png

    Thanks for looking into this!

  • Post your example snippets that you want to add to the official HISE snippet database here. We'll revise it, upload it to the repo and delete the post when finished.

    23 Topics
    140 Posts
    CasmatC

    @Christoph-Hart yeah, here's what I could come up with!

    The model occasionally thought you could add child panels directly to viewports. It didn't properly cast/convert the raw result of vpt.get("scrollBarThickness") for calculations. It hallucinated a scroll event listener/callback for viewports. I needed to prompt it specifically to use a 30Hz timer loop for position updates instead. It had the most trouble with local, reg, and const. Especially in long generations with multi level functions, it tried standard JS var/let scoping, leading to long runs of compilation errors. I mainly used Google's Gemini 3.1 Pro via Antigravity, but I also tested Claude Opus/Sonnet 4.6. The Anthropic models had a couple fewer issues, making sense if the MCP server is currently tailored to their behavior.

    I had checked out the viewport's multicolumn mode. I built this as a ScriptPanel recycler to have high LAF control over individual buttons and icons for a custom preset browser. I wouldn't be able to get the same component styling flexibility with multicolumn mode.

    I'll try out the LSP server! I've been following HISE's ai journey and can't wait to see what's next! Being a dev who uses AI to assist in most my work nowadays, it'll make HISE development much much faster and accessible lol. Love the forum, but I dream for the days where I'll ask Claude to explain why my function call is wrong and @David-Healey can enjoy his vacation instead! 😁

    The MCP server in antigravity is amazing, but there's a couple things HISE struggles with against AI.

    Absolute positioning is a bottleneck. Is there anyway to expose JUCE's FlexBox/Grid to hisescript? It would be life changing. If the model can just write relative values, it wouldn't have to guess pixel coordinates anymore. Can't wait for scriptnode to work with MCP. Having models build scriptnode networks from text/json, or piggybacking faust, will make that rodeo a lot simpler.

    I can envision HISE's future as a sidecar rendering engine alongside your everyday IDE, which wil be where the actual code writing/editing and prompting happens. Having HISE run in a headless like manner to compile the plugin, fix errors, and run tests would have massive potential. The LSP and MCP server are great starts for this.

  • Everything related to the documentation (corrections, additions etc.) can be posted here
    71 Topics
    481 Posts
    Christoph HartC

    @username1234 this is a thing that I vibecoded last week - it‘s super fresh but yes once that is tested a bit it will definitely be recommended as the preferred way of getting hise setup for development. Just be a bit more patient my friend.

  • Collection of Blog Entries

    81 Topics
    770 Posts
    David HealeyD

    Another one you might be interested in is Floe: https://floe.audio/

  • The nerdy place for discussing the C++ framework
    184 Topics
    1k Posts
    HISEnbergH

    @Allen Ah thanks for clarifying. I believe this should work the same for RNBO node as any other C++ node. You need to add these flags to your projects Extra Definitions:

    NUM_HARDCODED_FX_MODS=4 //or however many slots you need NUM_HARDCODED_POLY_FX_MODS=4

    It is possibly you may need to first add that to HISE's extra pre processor definitions in projucer first and recompile HISE, then also add those to your project (so it works in the compiled plugin).

    The documentation about this is a bit hard to find. There's also a forum post about it here.

    Here is a spreadsheet of the different HISE flags you can use (it needs to merge this into the documentation somewhere).

    Just for some extra context this is straight from the docs:

    // number of modulation slots for Script FX HISE_NUM_SCRIPTNODE_FX_MODS=0 // number of modulation slots for Polyphonic Script FX HISE_NUM_POLYPHONIC_SCRIPTNODE_FX_MODS=0 // number of modulation slots for Scriptnode Synthesisers HISE_NUM_SCRIPTNODE_SYNTH_MODS=2 // If you plan to compile the DSP network to a C++ node // (which is possible with this node since HISE 5.0), you will // also need to set the corresponding preprocessor variables // for the hardcoded modules: // number of modulation slots for Hardcoded FX modules NUM_HARDCODED_FX_MODS=0 // number of modulation slots for Hardcoded Polyphonic FX NUM_HARDCODED_POLY_FX_MODS=0 // number of modulation slots for Hardcoded Synthesiser NUM_HARDCODED_SYNTH_MODS=2

22

Online

2.2k

Users

13.6k

Topics

118.1k

Posts