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

      Thoughts on Moonbase?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      18
      0 Votes
      18 Posts
      370 Views
      J

      @David-Healey cool cool
      I did make just a licensing system with traditional serial keys...so Ill probably just use that for now, and then update.
      and I finally actually fininshed making this instrument😁

      now just working on some vids and demos and final testing. but ill include some screenshots here.
      Its just a sample based synth, where i sampled the f-k out of a LYRA 8 synthesizer..
      recorded through some amps and speaker cab impulse responses etc.
      Screenshot 2026-05-29 at 2.41.06 PM.png Screenshot 2026-05-29 at 2.41.18 PM.png

    • dannytaurusD

      Modulating ShapeFX Gain

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      6
      0 Votes
      6 Posts
      13 Views
      Christoph HartC

      @HISEnberg this. The structure of the shape FX module is somewhat limited and you can easily create whatever wave shaper + signal flow you want in scriptnode and if you compile it down to C++ it's about as efficient as the inbuilt wave shaper.

    • Y

      Building Hise github

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      0 Votes
      2 Posts
      27 Views
      dannytaurusD

      @Yannrog Set the HISE path for plugin compilation in Settings > Development > Compiler Settings > Hise Path

      CleanShot 2026-05-29 at 09.38.42@2x.png

    • ChazroxC

      Get Panel Attributes - Colours

      Watching Ignoring Scheduled Pinned Locked Moved Solved Scripting
      11
      0 Votes
      11 Posts
      104 Views
      ustkU

      @David-Healey There might be a bad parsing at some point. Without really knowing, the hex might be first parsed as string by the property editor...

    • David HealeyD

      32bit macOS flag

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      70 Views
      David HealeyD

      @Lurch Not sure if it affects compiling networks

    • ChazroxC

      Stupid Quotation marks behavior....

      Watching Ignoring Scheduled Pinned Locked Moved Solved Scripting
      14
      0 Votes
      14 Posts
      69 Views
      ChazroxC

      @Christoph-Hart I can breathe again....and move much faster now lol

    • N

      How can I improve my reaction time?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      -2 Votes
      2 Posts
      44 Views
      Christoph HartC

      @nohasm191 haha yes we all do human things as humans. Because we are human and not a robot.

    • S

      HISE plugin as virtual midi port?

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved General Questions midi port fx plugin trigger
      13
      0 Votes
      13 Posts
      199 Views
      ChazroxC

      @David-Healey I guess you're right. I haven't tested any automation through that method yet. Only midi messages.

    • Y

      js file not found

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      67 Views
      Y

      @David-Healey

      Thank you so much

    • dannytaurusD

      State of the Independent Audio Plugin Companies PDF report

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      4 Votes
      2 Posts
      87 Views
      tobbentmT

      @dannytaurus Thanks for sharing this! If anyone has questions about the data going into this, or suggestions for the next survey, please let us know! :)

    • C

      Meta Ads

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      25
      0 Votes
      25 Posts
      1k Views
      David HealeyD

      @dannytaurus said in Meta Ads:

      Or get someone much younger and more in-touch with social media to make them for me!

      Don't know if you know about this, but here is a creator/influencer marketplace built into ad manager where you can hire people to make ads for you. If you hire someone, get them to make 10 3 second intros for each ad. Then you can mix and match the intros with the ads so you get more chances to catch a viewer's attention (Ben Heath's idea).

      8dd61f3b-86ad-4008-847a-eae77c41d288-image.png

    • bendursoB

      Change Look And Feel Dynamically

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      13
      0 Votes
      13 Posts
      1k Views
      OrvillainO

      @Lindon said in Change Look And Feel Dynamically:

      @Orvillain said in Change Look And Feel Dynamically:

      @Lindon Nice! And you're doing all that with branching logic in the LAF's ??

      I did make a start, and I got a mix control to turn into a slider versus a knob, depending on what effect I have loaded. Seems pretty flexible for sure!

      actually Im doing all this with json, so when the user selects an FX I go find the JSON object for its background and its sliders, and use those in the LAF... so hardly any branching going on.... it'd be a fairly massive switch statement....

      Gotcha! Yes that makes total sense.

    • Y

      Hello, easy one, How do we set a value to a knob by scripting so it never changes.

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      13
      0 Votes
      13 Posts
      221 Views
      David HealeyD

      @Yannrog said in Hello, easy one, How do we set a value to a knob by scripting so it never changes.:

      If I update, will I get the exact features on my project?

      Maybe, depends if your current version has a bug

    • David HealeyD

      Recent commit to Processor.cpp breaking old project

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      23
      0 Votes
      23 Posts
      981 Views
      David HealeyD

      @Christoph-Hart How about this to fix the original issue? https://github.com/christophhart/HISE/pull/959

    • David HealeyD

      Compiled Network Fixed Channel Count?

      Watching Ignoring Scheduled Pinned Locked Moved ScriptNode scriptnode channel compiled network
      17
      0 Votes
      17 Posts
      272 Views
      David HealeyD

      My network contains a lot more than just some gains so recreating it all via scripting is a pain and means I don't get to work with the nice GUI. Is there a simple build network from JSON type thing? Edit: dsp.createFromJSON might be it..

      Another option I thought of is I can park all the chains in the multi as unused nodes, then in the script use this to add them for just the number of channels:

      const dsp = Engine.createDspNetwork("SimpleGain"); const numChannels = dsp.getNumChannels(); const multi = dsp.get("multi"); const numPairs = numChannels / 2; for (i = 0; i < numPairs; i++) dsp.get("chain" + i).setParent(multi, i);

      This works for my multi channel simple gain because each channel has its own chain, but I don't think it would be a good general solution for all networks.

    • Oli UllmannO

      Issues with Panel.repaint() and Panel.repaintImmediately() - laggy user interface

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Scripting
      15
      0 Votes
      15 Posts
      219 Views
      Oli UllmannO

      @Christoph-Hart
      Here is a demo gif.
      It's about the blue animation above the magician, which changes based on the large knob.
      Everything works perfectly in HISE. However, it's still unstable in the compiled plug-in.

      webViewDemo.gif

      PS. I also want to build a xy-pad with a web view...

    • StraticahS

      HISE Sampler VSTs Crash? Across multiple brands (FL Win)

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      34
      0 Votes
      34 Posts
      3k Views
      Christoph HartC

      I could reproduce the crash - unfortunately I couldn't solve it properly, so the only fix is to delay the initialization for Webviews on FL Studio if the plugin is opened. If I "double click" on the instrument track, it crashes in the FL code, not the destructor of the webview (which I hoped it would).

      I'll push the fix tomorrow.

    • Y

      Transpose combobox values

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      76 Views
      Y

      @David-Healey Thank you,

      Its working really great 👍

    • LindonL

      Latest version of HISE breaks existing presets....

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      63
      0 Votes
      63 Posts
      5k Views
      LindonL

      @JulesV I haven't heard back from Christoph so I assume not...

    • MorphoiceM

      Dolby Atmos?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      157 Views
      MorphoiceM

      @Christoph-Hart that's superb news! I'm so looking forward to bringing my AMS RMX16 clone to dolby atmos to have that gated reverb in my next album. It was a stupid idea to start making an album in atmos anyways but hey... why not