Categories

  • General questions and announcements about HISE

    8k Topics
    69k Posts
    ustkU

    @DanH

    HiseSnippet 1227.3ocsVstaaaCElJIpnV6ZA1u1uH7uTK7TsatuhglDm3sflKFwosaHHHfljRlKTjFTzsyqHuJ6kZu.6QXuAYGJ4KxwtaEAqFFF9vysuCO2XailxyxzFjWv4C6yQdetemgJaul8HBE5v8Qdeqeagk16M83b4w5AY7y0Cn8NVy3n8F1mjkwYHOuk+Qm7dUVAk+4uewdDIQQ4SOBgdsVP4GIRE1om1dmWJjxVDF+bQZIoWamCoZUSsTO.v1x90Q8IzqII7SHNwVxG8SjrdHum32MNdiMVKd63MVuKi2X6tj0oatMcqFz30YzU2hsViM2r91ag7dvALgUa5XIVdFxak8zrgc5oempvAuVjI5J4NhFnNfmKNtkVxbgn6TTydBIq83KsLDXk1SuBWt3J7a7OVvDSNe5U4Wmy.OUixWfdKMK7VdF30nL7pWBdK.RdkfzJEP5Q9cnFQe6TNN77Y9GprbSLgNatrPVzR+4J9M0fDJaTJ4ZdKCPLQivMpWuFF94wOOHH.RVYV7aIF7zpkWp5h+A7XKjvsM0o80JfHr5LRUM2DAAO8o3l6EHTRghiiGnnVgVg0pYD1YOiVFRGarZfakC3ON38AU.lYZIOpuQ.do37mGbyyClwDQYNrjallDorKTYEtXuLBXNjsmQSXTRFD9XFOVnDNzsv.OuC4ptTH5OPk.ASD0vgrZISD99.LtpfU86wUmWwp0bbIljLf+EUmDpUqgqxeq6OWlKgkTHwkA23PJfRh0Rn8vVMNWNrK8GLuChJj6b8jTRdq8ANcxBu3NomKA21TJnWmgOUIG5PQ0Y8Wrv.2BRADZJtYgNjwNZD6vpNKjxfeGmjKmMyAdd1TDiCyohRcn6U8ebPE33JSD1kHesKIGVOZc.QkYQ6QTIbVn63aJteljKOZ2VKHwIcA6URRbop1hD2QZJQdjVe8tJVKHpbFMXN0hL7DWHZZMNppxLj2cl1RLC6HELtobHmTCq69q4AZRTLLEbWoLDNIpaRwbOGxSJpUcj47DVdZAYCG6fJt.XH.XGSB.1KV8R7SvgMhpi+t7CyaBNQaRIRwuyYEZkD4P1QPoYX8ZS08YPldX920hb80tas45bl6xXtKBPqRcumns7SUg4AZvMA36xJNdg7F0AJg5kEw1stv7uoXnZPZWto7zAmfvHwYmy5+gmyVdM.snfnjfZ0gvLfS6yUenkCnQUQtYxiPEHpMeh7WNZhbQcAR.Cd+J+YtqQ4.e5Jw+5EnWc39DKYr4.KCdqO2XEt.wae9agErEC7q3uOO6Zqtetri5IPdO7i14+1DGuS+cFNEE+xNuSvrvlWeu1.YOtHom0QUyCgFW4Bh+fyN6racJLsh0c5s+A51hE+ysiB1NpYCjD6rqLcOrXDCH+NydJ2tHUlvNr7CO9eaO5GKDeTwM2hw3RK.iP96SAFG85iuv+f3XN0NEfq325m+z7TCzY5AVgJ4Xh0HfJF+SFj1AxzTN3ckhKc8WdK45DJnq6nc2.c3JVNwsvmQLa3n8FwrwXlnTB0nuhVz+3deyCyOAvjJ+sfU7O1Qiab2FFDJEdt0UT5rlZNEe18UwUuuJt18Uw0uuJtw8UwMuuJt0+shtWCu6.qNsnsAgNt8A4C377NPQfJv7pUz+vDeJ6q
  • Scripting related questions and answers

    2k Topics
    15k Posts
    P

    @HISEnberg Hi, thanks for the quick response !

    My filter was indeed inside ProjectName\DspNetworks\ThirdParty\src and I had a reference to it in my node header.
    I'm not sure if my first post was clear so here is a step by step to reproduce my issue :

    Create a new hise project Create c++ third party node template Compile DPS node as dll Create a src folder in thirdParty Create test_filter.cpp and test_filter.h // .cpp #include "test_filter.h" namespace TestFilter { Test::Test(float param){ test_float = param; } } /// .h namespace TestFilter { class Test { public: float test_float; Test(float param); }; } Inside the template, add #include "src/test_filter.h" at the beginning and TestFilter::Test t(0.5); in prepare

    Now if I try to build inside visual studio code I get a linker error saying that it can't find the definition of my constructor.
    If I add the dependency to test.h and test.cpp, it works, but only once, and if I retry to compile the dps network as dll I have to re-add the filters to my dependencies.

    And if I go back to hise and try to export as a standalone app, I have the linker error again.

    I hope this make my issue more clear and sorry if it wasn't on my first message

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

    188 Topics
    2k Posts
  • All about ScriptNode DSP nodes, patches, SNEX and recipes.

    337 Topics
    2k Posts
    ulrikU

    @ustk I will explain what I'm trying to do.
    I have 3 bp filters, 5 templates, (all with different freq and q settings for the 3 filters),
    There is 3 select knobs that can select any of the 5 templates like, knob1 - template 1, knob2 - template 4 etc..
    I have a knob that sweeps through, and interpolate between the 3 selectors chosen templates and interpolate all values between them so meaning:
    Sweeper value 0: template bottom, sweeping up to value 0.5 (here's center) so
    Bottom freq1 => Center freq1, Bottom freq2 => Center freq2 etc.., same with the 3 bandwidth values

    When reaching the center and above, Bottom frequencies => Top freq etc
    I have spent yesterday and a couple of hours today to figure out how to do this in script node.
    If I could write some scripts (not in script node), then I could get it working, but in script node...uh..

  • A subforum for discussing Faust development within HISE

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

    @ulrik said in scroll event for script panel mouse callback:

    Would it be possible to add

    event.scroll and event.scrollValue

    to the Script Panels MouseCallback?

    @Christoph-Hart apologies since it looks like it's T-Shirt season for me--do you think this is a feature you can look at integrating? I am trying to add a Zoom/Scrolling feature to my panels and this is just what I need...

  • 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.

    113 Topics
    935 Posts
    Y

    @Oli-Ullmann Ok, I'll try

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

    hey did you ever figure out why this is happening i have ran into this issue too

  • 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.

    17 Topics
    112 Posts
    ustkU

    @Chazrox You might not have the good snippet, the sliders are in dB in the one I've provided

  • Everything related to the documentation (corrections, additions etc.) can be posted here
    70 Topics
    475 Posts
    d.healeyD

    @weezycarter make a minimal test plugin with 4 channels. Then we'll have a baseline.

  • Collection of Blog Entries

    80 Topics
    751 Posts
    JulesVJ

    @Mighty23 It seems 1000 ms is very short for low bpm and 1 bar.

    Is it possible to increase the max delay time to 5000 ms?

  • The nerdy place for discussing the C++ framework
    172 Topics
    1k Posts
    B

    @HISEnberg i tried. Still no sound - in my c++ node, do i have to define the midi input as well ?

23

Online

2.0k

Users

12.8k

Topics

111.3k

Posts