• Build fail - Semantics: "Reference to ‘Point’ is ambiguous"

    35
    0 Votes
    35 Posts
    3k Views
    ulrikU

    @Christoph-Hart this is your code and it works great in the standalone Hise, this is only 6 channels but it should work for more I guess :)

    // Bass side ---------------------------- inline function onOutBassControl(component, value) { // this variable checks if the output channel exists. local success = true; switch(value) { case 1: // Routes the first two input channels (= sine wave); // to the first to output channels matrix.addConnection(0, 0); matrix.addConnection(1, 1); break; case 2: // Routes the first two input channels // to the second stereo output matrix.addConnection(0, 2); // addConnection returns true if the connection could be added // if the host doesn't support multichannels, this returns false // and you can reset the connections to default later (see below) success = matrix.addConnection(1, 3); break; case 3: matrix.addConnection(0, 4); success = matrix.addConnection(1, 5); break; } if(!success) { // Reset to Channel 1+2 in case of an error matrix.addConnection(0, 0); matrix.addConnection(1, 1); } //SucessLabel.set("text", success ? "OK" : "Error"); }; Content.getComponent("OutBass").setControlCallback(onOutBassControl); // Treble side -------------------------------- inline function onOutTrebleControl(component, value) { // this variable checks if the output channel exists. local success = true; switch(value) { case 1: matrix.addConnection(2, 0); matrix.addConnection(3, 1); break; case 2: matrix.addConnection(2, 2); success = matrix.addConnection(3, 3); break; case 3: matrix.addConnection(2, 4); success = matrix.addConnection(3, 5); break; } if(!success) { matrix.addConnection(2, 0); matrix.addConnection(3, 1); } //SucessLabel.set("text", success ? "OK" : "Error"); }; Content.getComponent("OutTreble").setControlCallback(onOutTrebleControl);
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • Has the modulation system been "fixed" ?

    49
    0 Votes
    49 Posts
    4k Views
    C

    @Christoph-Hart Should I do something similar when modulating a simple gain with a similar system?

  • Reverse AudioWaveForm display?

    5
    0 Votes
    5 Posts
    257 Views
    ustkU

    Why not to grab the sample in a buffer and reverse it? Maybe not too much overhead if they are short enough?

  • Can't to export

    5
    0 Votes
    5 Posts
    368 Views
    d.healeyD

    @nouslou Try reinstalling xcpretty

  • Complile HLAC tool for standalone wav to monolith conversion

    13
    0 Votes
    13 Posts
    933 Views
    d.healeyD

    @bthj Yes you can run HISE from the terminal - I have a video about it on YouTube. I can't remember where in the source code it is but should be easy to do a text search for it once you know the available commands.

  • Shader Knobs

    9
    0 Votes
    9 Posts
    543 Views
    ?

    @crd Yeah! Me too... But getting my head around shader code, in general, is nonetheless a bit of a challenge I find! 🤯

  • Utter Confusion (LinkWindows)

    21
    0 Votes
    21 Posts
    1k Views
    ?

    @d-healey I could send them one but I think I've put them through enough troubleshooting, they went back to the Kontakt versions 😂

  • Voice at 64 some notes fade out

    2
    0 Votes
    2 Posts
    160 Views
    DanHD

    @BWSounds I’ve found synthesiser groups to be unreliable with voice amounts but haven’t had time to investigate. Are you using unison?

  • Scriptnode DSP Compilation help (again!)

    71
    0 Votes
    71 Posts
    4k Views
    DanHD

    @d-healey I wrap the node because otherwise I can't compile it to dll (it won't appear in the list).

    And yes I'm trying to reduce the cpu usage of a more complex network.

  • Scriptnode Split L+R channels

    2
    0 Votes
    2 Posts
    143 Views
    DanHD

    @DanH ah a container.multi

  • Midi Fx plugin

    10
    0 Votes
    10 Posts
    682 Views
    lalalandsynthL

    @Christoph-Hart We only need MIDI , no audio , so can it be done via the MIDI fx plugin ?

    What we need is to send a sysex stream for settings , LFO as CC and MIDI note as trigger.

    Maybe @jonhallur can chime in here as he is the one doing the programming and has got the Standalone working.

  • MIDI Out

    11
    1 Votes
    11 Posts
    923 Views
    lalalandsynthL

    @d-healey Friendly bump on this as we really need to to complete our plugin.
    We are making a MIDI retrofit kit for vintage analog synths and we would like to ship it with an standalone app and plugin.
    For this we need CC , midi note and Sysex.
    We seem to have this working with the standalone but plugin not so much.

    This would be amazing to have as a feature in HISE , not only for our kit but in general.

  • 0 Votes
    29 Posts
    2k Views
    d.healeyD

    I've opened a github issue relating to the reference monolith problem when the sample maps have different amounts of RR groups.

  • Scriptnode - Accessing node params

    3
    0 Votes
    3 Posts
    311 Views
    JL.LVJ

    @Matt_SF Can't believe I missed this, thanks!

  • Delay a callback

    4
    0 Votes
    4 Posts
    276 Views
    LindonL

    @BWSounds declare a system level timer:

    lookup:

    myTimer = Engine.createTimerObject();

    then create a timer call back:

    look up:

    myTimer.setTimerCallback(var callbackFunction)

    in your button callback call the timer:

    myTimer.startTimer(int intervalInMilliSeconds)

    in the timer itself stop the timer...

  • Rounded rectangle joints

    3
    0 Votes
    3 Posts
    234 Views
    S

    @d-healey Thanks, The frame itself is eating part of the path, If I got it.

  • Bug/Feature tracker

    30
    4 Votes
    30 Posts
    3k Views
    LindonL

    @christoph-hart -oh okay, all fine then nothing to see here, everyone back on their heads....

  • This topic is deleted!

    22
    0 Votes
    22 Posts
    52 Views
  • Tooltips

    19
    1 Votes
    19 Posts
    1k Views
    d.healeyD

    @bm_forum said in Tooltips:

    Not sure how I managed that one,

    I recommend using git for managing different versions of HISE as well as your own projects. It makes life much easier when switching between branches. (I have a couple of videos about it)

24

Online

1.8k

Users

12.0k

Topics

104.0k

Posts