Navigation

    Forum

    • Register
    • Login
    • Search
    • Categories
    • Tags
    1. Home
    2. d.healey
    3. Topics
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Topics created by d.healey

    • Paint routine for Natan
      Scripting Forum • panel paint routine vector • • d.healey  

      21
      2
      Votes
      21
      Posts
      45
      Views

      Has anyone asked about how to apply post filter effects for a 50ies Scifi vibe? Content.makeFrontInterface(150, 150); const var Panel1 = Content.getComponent("Panel1"); Panel1.setValue(1); const var circlePath = Content.createPath(); circlePath.addArc([0.0, 0.0, 1.0, 1.0], 0.0, Math.PI * 2); Panel1.setPaintRoutine(function(g) { g.beginLayer(true); g.setColour(Colours.white); var area = [1, 1, this.getWidth() - 2, this.getHeight() - 2]; g.drawEllipse(area, 2); var radius = this.getWidth() / 2 * this.getValue(); var diameter; var pos; for (i = 1; i < 4; i++) { diameter = (radius * 2 / 4 * i); pos = this.getWidth() / 2 - diameter / 2; if (pos > 0) g.drawEllipse([pos + 1, pos + 1, diameter - 2, diameter - 2], 2); } g.gaussianBlur(1.0 / this.getValue() * 12.0); g.addNoise(0.2); g.applyMask(circlePath, area, false); g.endLayer(); }); inline function onKnob1Control(component, value) { Panel1.setValue(component.get("max") + 1 - value); Panel1.repaint(); }; Content.getComponent("Knob1").setControlCallback(onKnob1Control);
    • Disable midi learn
      Scripting Forum • • d.healey  

      10
      0
      Votes
      10
      Posts
      47
      Views

      @d-healey Cool so if the link is removed, it would be good to have a property saveMidiLearnInPreset right?
    • Show impulse response waveform on front end
      Scripting Forum • drag n drop waveform impulse respons reverb • • d.healey  

      4
      0
      Votes
      4
      Posts
      31
      Views

      @d-healey Beware, it's mad sketchy. I played around with showing the impulse response on my front end for months and got tons of crashes. Whenever you move a knob related to the convolution, the waveform will flicker in a really annoying way and often crash the plugin. I think I posted about this elsewhere with the crash report.
    • Connecting knobs to limiter = weirdness
      Scripting Forum • • d.healey  

      6
      1
      Votes
      6
      Posts
      32
      Views

      @ustk Yeah it seems janky
    • rlottie GNU/Linux support
      C++ Development • • d.healey  

      1
      0
      Votes
      1
      Posts
      18
      Views

      No one has replied

    • Inline function more than 5 parameters...
      Scripting Forum • • d.healey  

      1
      0
      Votes
      1
      Posts
      27
      Views

      No one has replied

    • How to change processorID of AHDSR floating tile?
      Scripting Forum • adsr ahdsr floating tile update processor id • • d.healey  

      5
      0
      Votes
      5
      Posts
      23
      Views

      Yikes, that looks wild
    • How to get number of RR groups
      Scripting Forum • • d.healey  

      3
      0
      Votes
      3
      Posts
      19
      Views

      Oh duh of course! Thank you.
    • HISE Script Coding Standards
      Documentation • documentation style guide coding standard • • d.healey  

      20
      7
      Votes
      20
      Posts
      135
      Views

      A

      @d-healey Okay, thanks. Will probably be using lots of those then.
    • Declaring multiple const variables on single line causes crash
      Bug Reports • crash multiple variables single line • • d.healey  

      1
      2
      Votes
      1
      Posts
      24
      Views

      No one has replied

    • Post increment vs pre-increment
      Scripting Forum • • d.healey  

      5
      0
      Votes
      5
      Posts
      110
      Views

      @d-healey Also, since Hise script is much slower than C++, I think (and here is only my opinion) that the slight difference if there is, is drowned into the funnels of the interpreter…
    • Bookmarks & breakpoints
      Scripting Forum • breakpoint bookmark • • d.healey  

      1
      0
      Votes
      1
      Posts
      38
      Views

      No one has replied

    • Machine ID
      Scripting Forum • • d.healey  

      8
      0
      Votes
      8
      Posts
      63
      Views

      you could also just take a hash of all MAC addresses. Wouldn't that change if someone replaced their network card/dongle or added an extra one?
    • EQ display weirdness on MacOS
      General Questions • • d.healey  

      3
      0
      Votes
      3
      Posts
      29
      Views

      Yep that was it, Mac Mini thought 16Khz was cool
    • Pausing/Resuming downloads
      Scripting Forum • download server • • d.healey  

      3
      0
      Votes
      3
      Posts
      44
      Views

      @Christoph-Hart Thanks I'll check it out!
    • Project compiler settings
      General Questions • project setting compiler • • d.healey  

      6
      0
      Votes
      6
      Posts
      30
      Views

      Project and User settings are stored in the project, the rest is system-wide. I try to sort the settings based on whether it should be applied to all projects or not into these categories...
    • GNU/Linux 32bit
      General Questions • export linux gnu 32bit • • d.healey  

      1
      0
      Votes
      1
      Posts
      31
      Views

      No one has replied

    • Implementing an auto updater/notifier?
      General Questions • • d.healey  

      18
      1
      Votes
      18
      Posts
      136
      Views

      @Lunacy-Audio said in Implementing an auto updater/notifier?: wp-json/wc/v3/products/20 Thanks Casey, it turned out mine was a postman issue...so having sorted it to work there I will now try in HISE
    • Is the markdown panel broken?
      General Questions • • d.healey  

      1
      0
      Votes
      1
      Posts
      30
      Views

      No one has replied

    • fixed expansion hr1 archiving
      General Questions • expansions • • d.healey  

      21
      0
      Votes
      21
      Posts
      170
      Views

      @d-healey Alrighty.