• Spread Velocity Mapping Video

    2
    3 Votes
    2 Posts
    461 Views
    Christoph HartC

    I am also opening the help pop up each time because I forget what velocity mode I need :)

  • Output of an FX

    1
    0 Votes
    1 Posts
    364 Views
    No one has replied
  • Animating width and heigh

    2
    0 Votes
    2 Posts
    499 Views
    David HealeyD

    @jay You already asked this...

  • 0 Votes
    19 Posts
    5k Views
    JayJ

    @mwplugs how did you manage to solve it? I can't figure it out

  • how to make a bypass button ?

    7
    0 Votes
    7 Posts
    2k Views
    musictopM

    Select the button and change parameter properties - point at your sampler in 'processorid' menu and change to -bypass in 'parameterid'.

    see the pic below.
    http://i64.tinypic.com/3088inc.png

    hope it helps!

  • Vu Meter not working on limiter

    3
    0 Votes
    3 Posts
    686 Views
    JayJ

    @d-healey I don't know how to send it as an attachment so here are it is as text:

    ============== VuMeter.js ====================

    namespace VuMeter
    {
    /** Creates a peak meter.
    *
    * Usage: Give it a reference to a module (either synth or effect).
    *
    * It looks best using a width and height with multiple of 4.
    * Customize the colours using the scriptPanel colour Ids
    */
    inline function createVuMeter(name, x, y)
    {
    local widget = Content.addPanel(name, x, y);

    Content.setPropertiesFromJSON(name, { "width": 32, "height": 100, "itemColour": 0xFF90FFB1, "itemColour2": 4279505940, "bgColour": 4279505940, "textColour": 4283782485, "saveInPreset": false, "opaque": 1 }); widget.setPaintRoutine(function(g) { g.fillAll(this.get("bgColour")); g.setColour(this.get("itemColour")); var lsize = parseInt(this.data.lvalue * (this.getHeight()-4)); var rsize = parseInt(this.data.rvalue * (this.getHeight()-4)); g.fillRect([2, this.getHeight() - lsize - 2, (this.getWidth()-4)/2-1, lsize]); g.fillRect([2 + this.getWidth() / 2 - 1, this.getHeight() - rsize - 2, (this.getWidth()-4)/2-1, rsize]); g.setColour(this.get("itemColour2")); for(i = 1; i < this.getHeight()-1; i = i + 3) { g.fillRect([1, i, this.getWidth()-2, 1]); } }); widget.setTimerCallback(function() { var lvalue; var rvalue; if(this.data.fx) { lvalue = getNormalizedPeakValue(this.data.fx.getCurrentLevel(0)); rvalue = getNormalizedPeakValue(this.data.fx.getCurrentLevel(1)); } else { lvalue = getNormalizedPeakValue(Engine.getMasterPeakLevel(0)); rvalue = getNormalizedPeakValue(Engine.getMasterPeakLevel(1)); } this.data.lvalue = Math.max(lvalue, this.data.lvalue - 0.04); this.data.rvalue = Math.max(rvalue, this.data.rvalue - 0.04); this.repaintImmediately(); }); widget.startTimer(30); return widget; }; inline function setModule(vuMeter, module) { vuMeter.data.fx = module; } inline function getNormalizedPeakValue(gain) { return 0.01 * (100.0 + Engine.getDecibelsForGainFactor(gain)); }

    }

  • Tutorial for skinning Dynamics meters?

    3
    0 Votes
    3 Posts
    848 Views
    Dan KorneffD

    @jay I found the answer somewhere on this forum a while back

  • Need Help With Limiter FX

    1
    0 Votes
    1 Posts
    337 Views
    No one has replied
  • Preset Browser

    10
    0 Votes
    10 Posts
    2k Views
    David HealeyD

    @jay It's not that difficult to code it youself. You just need a switch statement. Grab the name of the preset then load the correct sample maps based on which preset was selected.

  • VST version not work!?

    1
    0 Votes
    1 Posts
    518 Views
    No one has replied
  • Buttons value to text

    6
    0 Votes
    6 Posts
    1k Views
    David HealeyD

    @jay Go through the tutorials and by the end you should know what to do - http://hise.audio/manual/Tutorial1.php

  • VST Compile error please (solved)

    16
    1 Votes
    16 Posts
    4k Views
    S

    @d-healey Yeayyyyyyyyy !
    it's working now .
    Thank you HISE Master @d-healey .

  • Question about color!

    2
    0 Votes
    2 Posts
    808 Views
    David HealeyD

    I don't think it's possible, but white goes with everything :)

  • This topic is deleted!

    2
    0 Votes
    2 Posts
    4 Views
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    8 Views
    No one has replied
  • HISE Auto Trim demonstration

    5
    0 Votes
    5 Posts
    981 Views
    resonantR

    @d-healey Very cool, thanks...

  • Why I use HISE

    2
    4 Votes
    2 Posts
    521 Views
    resonantR

    @d-healey 👏 👏 👏 Thanks...

  • Windows 10 or 7. Visual Studio 2015 or 2017

    6
    0 Votes
    6 Posts
    975 Views
    hisefiloH

    @christoph-hart just compiled mi first .exe VI and the trickiest part was to figure out vst and asio sdks should have the exact name you posted on tutorial

  • Ld build MacOs - Build failed

    9
    0 Votes
    9 Posts
    2k Views
    JayJ

    @christoph-hart How do you install xcpretty?

  • Windows VST Export

    3
    0 Votes
    3 Posts
    876 Views
    R

    I tried compiling HISE on another computer. The build failed in visual studio, but visual studio ended up downloading the correct version of the Windows SDK.

    I tried using the latest build to export as FX, which made it further than the previous attempts, but still failed when it could not find the following

    Could Not Find C:...\Plugin Development\HISE-master\HISE-master\extras\demo_project\Binaries\Compiled\Demo Project x64.exp
    Could Not Find C:...\Plugin Development\HISE-master\HISE-master\extras\demo_project\Binaries\Compiled\Demo Project x64.lib

    Do I need the build from visual studio to export properly?

9

Online

2.3k

Users

13.7k

Topics

119.1k

Posts