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

    Topics

    • 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
      117 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
      438 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
      3
      0 Votes
      3 Posts
      71 Views
      It_UsedI

      @d-healey Thank you, I will study it and maybe make some changes, or I will use it as a reference.