• Weird button issue once compiled

    2
    0 Votes
    2 Posts
    139 Views
    Dan KorneffD

    @BWSounds Possibly an issue with a script that controls those buttons?

  • Suddenly hitting snex errors when compiling... - SOLVED

    7
    0 Votes
    7 Posts
    342 Views
    ?

    @Christoph-Hart said in Suddenly hitting snex errors when compiling... - SOLVED:

    Yes, please try again, they should be fixed now.

    Yep... It's a Christmas tree compile with about 389 shiny warning signs, but it's a successful build nonetheless... πŸŽ„πŸ™πŸ₯³πŸ’ͺ

    Now I only need to find a way to open my project with it. Because it crashes every time I try... I tried disabling modules, but that hasn't helped so far...

    BTW, I discovered the OpenGL Driver Monitor and the Open GL Profiler yesterday in Additional Tools for Xcode... Would that be of any help to root out my OpenGL probs?!

    EDIT:

    Not sure if this helps. That is what is crashing my plugin that I am trying to open in codegen_rewrite... I managed to open it by now by disabling all modules... but as soon as I boot them back up it crashes... Maybe it would be a good idea for me to disable OpenGL altogether for now?

    Screenshot 2021-06-16 at 10.27.57.png

  • Perlin noise

    3
    0 Votes
    3 Posts
    197 Views
    ustkU

    @Christoph-Hart Oh, I see it was for graphics... On my side, it was for creating random oscillators that are not just a crazy random function but something more controlled...

  • Complete crash of Hise with this script

    31
    0 Votes
    31 Posts
    1k Views
    MikeBM

    @Lindon
    @d-healey

    Ok - convinced πŸ‘ πŸ‘ πŸ‘ πŸ‘ πŸ‘

    That is even shorter
    I still have a lot to learn.
    Thank you very much - now I can finally sleep again,
    after watching all of David's videos again the last few nights.

    As I said, I think more visually than auditorily.
    A picture tells me more than 100 words.

    I will now analyse this for the time being and
    see where my mistake was.

    Once again many thanks to both of you

  • Factory vs. User Presets

    21
    0 Votes
    21 Posts
    2k Views
    ?

    @d-healey If we can't do it dynamically with Content.setPropertiesFromJSON, then you can always put a panel over it (Save Preset) and play with "visible" true/false to hide the panel. It's a bit sketchy. But it's an idea.

  • VU Meter image strip jumps on the latest frame

    15
    0 Votes
    15 Posts
    1k Views
    DanHD

    @orange Oh right, I get it now, that's what confused me! Thanks :)

  • sorry if a little off topic- traction-engine open source and HISE

    2
    0 Votes
    2 Posts
    275 Views
    callybeatC

    It looks interesting, although I don't think I'm a candidate I'm still very new πŸ˜…

  • component list gone?

    30
    0 Votes
    30 Posts
    4k Views
    M

    @d-healey I ended up finding a previous version I backed up that wasn't too far off from where I was. It's a pain in the ass to have to redo but I'm going to bite the bullet and do it. If it happens again, I'll send it over.

    Thanks again πŸ’ͺ

  • export as bitmap?

    3
    0 Votes
    3 Posts
    189 Views
    ulrikU

    @Lindon yes that is one way to do it, but I want it to be as user-friendly as possible, so if it is possible to save it as a jpg, png or likewise?

  • 2 Votes
    4 Posts
    522 Views
    beatskilzB

    Along with the Compiled binary send all @d-healey David Healey's Tutorials. This will be an extra push towards rapid learning.

  • Maybe someone can help me here

    4
    -3 Votes
    4 Posts
    189 Views
    MikeBM

    @Lindon said in Maybe someone can help me here:

    @MikeB - repeating your problem in multiple posts is just adding noise to teh forum.

    An act of desperation 😁

  • load preset

    7
    0 Votes
    7 Posts
    283 Views
    ustkU

    @MikeB oh sorry, my bad! You mean overwriting the file manually? Then you're right… but is it not the case of almost all plugins? You can provide factory presets as a download in the user account to prevent losing them…
    I don't know if it is possible to embed them in the plugin itself …

  • Open gl

    3
    0 Votes
    3 Posts
    256 Views
    DanHD

    @yall Why not try it and see?

    Put the flag HISE_USE_OPENGL_FOR_PLUGIN=1 in the usual places and set "GraphicRendering": true in CustomSettings to be able to switch in and out of OpenGL in your compiled plugin.

  • Preset Browser does not save the AudioLoopPlayer snapshot

    4
    0 Votes
    4 Posts
    434 Views
    callybeatC

    This script is incredible. I leave it in the post in case it helps someone., I already saw how to add buttons to navigate in the presets but I still have the problem in Audio loop player, all the synth configuration is set well In preset the problem comes when loading the sample in Audio loop player it always stays in sample 1 in all presets and I don't know what the LOOP button is active. I'm sure I'm missing some function but I don't know what it is 😁 , it is frustrating because practically the complement is already finished πŸ˜…

    display name presets whit label inline function onKnobpresetControl(component, value) { if (Engine.getCurrentUserPresetName() == "") Content.getComponent("Name").set("text", "Clean"); else Content.getComponent("Name").set("text", Engine.getCurrentUserPresetName()); }; Content.getComponent("Knobpreset").setControlCallback(onKnobpresetControl);
  • Spectral Processing?

    14
    0 Votes
    14 Posts
    669 Views
    d.healeyD

    @Christoph-Hart Your sticky isn't sticking...

    b3ba35f0-b42d-4967-87de-c7e6a8f38c6e-image.png

  • Load Different Instruments

    3
    0 Votes
    3 Posts
    328 Views
    Felipe FloresF

    @d-healey Got it... then the only way will be to make individual instruments and load them the same way. I will do it that way. Thanks!

  • Routing Sampler to Sampler

    7
    0 Votes
    7 Posts
    696 Views
    Felipe FloresF

    @ulrik Thank you very much for the help, I was able to do it also with a Container, and I assigned the samplers to them, then I connected my Gain Knob with the Simple Gain of the Container.

  • Plugin Wrapper

    4
    0 Votes
    4 Posts
    235 Views
    d.healeyD

    HISE can't host plugins so there is no way to use it to make a plugin that can host other plugins. You'd need to combine all of your plugins into a single project instead.

  • Trying to remove the text {PROJECT_FOLDER} from getMidiFileList

    3
    0 Votes
    3 Posts
    456 Views
    M

    @d-healey, Thanks D, I looked into that but couldn't quite get it to work but it lead me to some other string functions such as replace which ended up being exactly what I was looking for. For anybody looking for an answer to this thread, I ended up using

    const var oldstr = "{PROJECT_FOLDER}"; const var newstr = ""; .replace(oldstr, newstr)
  • How to export with Samples incluided.

    4
    0 Votes
    4 Posts
    448 Views
    d.healeyD

    You can't embed the samples in the plugin, and that would be a bad idea anyway. It would waste RAM and disk space.

36

Online

2.1k

Users

12.9k

Topics

112.1k

Posts