HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. It_Used
    3. Topics
    • Profile
    • Following 1
    • Followers 0
    • Topics 16
    • Posts 79
    • Groups 0

    Topics

    • It_UsedI

      All envelopes break when playing the same midi, in the same place.

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      2
      0 Votes
      2 Posts
      24 Views
      It_UsedI

      @Christoph-Hart need your help.

    • It_UsedI

      Midi CC events ignored in scriptnode envelope modulator.

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      4
      0 Votes
      4 Posts
      70 Views
      ulrikU

      @It_Used Ok, I see, I guess this is a bug @Christoph-Hart
      The sustain (cc 64) is working with the flex envelope outside a scriptnode, but doesn't work inside a script node

    • It_UsedI

      How to limit voice count per key?

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      13
      0 Votes
      13 Posts
      135 Views
      It_UsedI

      @It_Used Now is impossible to implement this. It is currently impossible to get the number of votes for a particular note. and send note off by noteOn EventID.
      Maximum - switch sampler retrigger mode after thrashold.

    • It_UsedI

      How to control loaded samples with preset.

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      12
      0 Votes
      12 Posts
      139 Views
      It_UsedI

      @d-healey oh shit this work... How did I not come up with such a simple solution? 🤣
      Thanks again! 💕

    • It_UsedI

      VU Meter.

      Watching Ignoring Scheduled Pinned Locked Moved Presets / Scripts / Ideas
      6
      1 Votes
      6 Posts
      123 Views
      d.healeyD

      @It_Used Check out my Bootcamp course, I cover the floating tile meter in it. You can still apply your design to it using laf.

    • It_UsedI

      Monolith bug.

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports monolith sampelr
      1
      0 Votes
      1 Posts
      200 Views
      No one has replied
    • It_UsedI

      Blur fix solution.

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      1
      0 Votes
      1 Posts
      151 Views
      No one has replied
    • It_UsedI

      VSL Velocity Histogram

      Watching Ignoring Scheduled Pinned Locked Moved Presets / Scripts / Ideas
      9
      5 Votes
      9 Posts
      584 Views
      It_UsedI

      @d-healey said in VSL Velocity Histogram:

      Arrays should generally use const. And if that bufferSize is fixed it should also be a const

      it is my typical stupid moment... Sometimes i forget primitives.

      @d-healey said in VSL Velocity Histogram:

      This one can be a local

      Yeah, after publish move it part to init callback, into inline function, to avoid cluttering up the onNote callback. Now i update post!
      Thanks a lot for the advice. 💕

      Edit: Post are updated!
    • It_UsedI

      setMinValue not working.

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      3
      0 Votes
      3 Posts
      240 Views
      It_UsedI

      @Chazrox I need to keep the range the way it is. See the last line of the script. Your solution can change only range, not current value

    • It_UsedI

      How i can create a Multi-Mic monolith?

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Newbie League
      7
      0 Votes
      7 Posts
      739 Views
      d.healeyD

      @It_Used yes that's correct

    • It_UsedI

      How to realize streaming and loading threads?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      11
      0 Votes
      11 Posts
      1k Views
      It_UsedI

      @Christoph-Hart I use this format initially, because otherwise I would have 500+GB occupied by samples.
      Can you answer an off-topic question? In general, I am very much waiting for the bugs with the mask and blur to be fixed. In general, this issue on github perfectly describes it.
      Are there any plans to fix this bug? It just really gets in the way when drawing :(
      Thank for advance ❤️

    • It_UsedI

      How to change shape of popup background?

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Scripting
      3
      0 Votes
      3 Posts
      731 Views
      It_UsedI

      @d-healey This is very bad for me :(
      But thanks for the reply anyway ❤️!

    • It_UsedI

      how to make Half Pedal action?

      Watching Ignoring Scheduled Pinned Locked Moved Solved Scripting
      5
      0 Votes
      5 Posts
      440 Views
      It_UsedI

      @HISEnberg Thanks ❤️

    • It_UsedI

      How i can create a blurred panel (with border settings support)?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      3
      0 Votes
      3 Posts
      192 Views
      It_UsedI

      @ustk Thank you very much for your reply)
      I'll take that into consideration. ❤️

    • It_UsedI

      Custom vectorized piano keyboard with unique octave indicator (Keyboard from VSL)

      Watching Ignoring Scheduled Pinned Locked Moved Presets / Scripts / Ideas
      11
      1 Votes
      11 Posts
      955 Views
      ustkU

      @It_Used Also, KeySpacing and ShowOctaveMark can be const var

      And this:

      var is_center = (OctCenter == obj.noteNumber); var bg_color = is_center ? Colours.withAlpha(0xB26776, 100) : Colours.withAlpha(0x575757, 100);

      can be

      var bg_color = Colours.withAlpha((OctCenter == obj.noteNumber) ? 0xB26776 : 0x575757, 100);

      or directly

      g.setColour(Colours.withAlpha((OctCenter == obj.noteNumber) ? 0xB26776 : 0x575757, 100));
    • It_UsedI

      Release Triggers with Sustain pedal support

      Watching Ignoring Scheduled Pinned Locked Moved Presets / Scripts / Ideas
      4
      0 Votes
      4 Posts
      262 Views
      It_UsedI

      @d-healey i find bug, your midi list isn't cleanup after function complete. This error may trigger the release notes again, even if they have already been played. And this happens if you send another message from controller 64, no matter what value it will be, 0, or more than 63 - releases will still be triggered.
      Add this at the end of function playReleaseNote

      noteIds.clear(); velocityValues.clear();