HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. weezycarter
    W
    • Profile
    • Following 0
    • Followers 0
    • Topics 12
    • Posts 90
    • Groups 0

    weezycarter

    @weezycarter

    5
    Reputation
    6
    Profile views
    90
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    weezycarter Unfollow Follow

    Best posts made by weezycarter

    • RE: Export Failing Due To Missing Knob Images

      @d-healey Ok thank you so much! Everything is good now.

      posted in General Questions
      W
      weezycarter
    • RE: Export Failing Due To Missing Knob Images

      @d-healey yes I downloaded from the develop branch

      posted in General Questions
      W
      weezycarter
    • RE: How to add Portamento

      @d-healey said in How to add Portamento:

      https://www.youtube.com/watch?v=h8HO7DR7GW8

      Thank you! It works perfect now.
      I didn't have the "copy glide to clipboard" option must be because I'm on Hise 3.0.3 due to me being on catalina but the copy script to clipboard worked perfect thank you!

      posted in Scripting
      W
      weezycarter
    • RE: How To Link Keyboard Keys to Buttons

      @d-healey THANK YOU! IT WORKS PERFECT!

      posted in Scripting
      W
      weezycarter

    Latest posts made by weezycarter

    • RE: Multi Output Tutorial

      @d-healey so far the minimum I’ve gotten to work in the plug-in version is just a stereo output 1/2.

      posted in Documentation
      W
      weezycarter
    • RE: Multi Output Tutorial

      @d-healey I haven't checked on another daw yet I accidentally deleted the component and vst first without thinking of trying it in another daw. I ran it through auval and auval crashes. The regular stereo plugin DOES work. its just when I put the NUM_MAX_CHANNELS = 48
      HISE_NUM_PLUGIN_CHANNELS = 48 values in there it fails validation, even though it exports fine from Xcode with no errors. it also fails with 32 channels.

      posted in Documentation
      W
      weezycarter
    • RE: Multi Output Tutorial

      I followed all the steps, Hise plugin compiles ok from xcode but crashes validation in logic. anyone here have any idea how I can correct this so my Hise plugin has 48 outputs like this example? I got a working HISE standalone with 48 outputs available in routing matrix. but the plugin crashes validation. any advice?

      posted in Documentation
      W
      weezycarter
    • How to enable Multi Output and Stereo output options within same plugin

      Hello, I am building a drum machine with 16 pads each pad will be assigned to its own stereo output therefore I will be using 32 outputs. In my presets I want each drum kit to have a stereo and a multi-output version in the preset dropdown is this achievable?

      posted in General Questions
      W
      weezycarter
    • RE: How To Link Keyboard Keys to Buttons

      @d-healey THANK YOU! IT WORKS PERFECT!

      posted in Scripting
      W
      weezycarter
    • RE: How To Link Keyboard Keys to Buttons

      @d-healey This code is inside my interface on the oninit tab

      posted in Scripting
      W
      weezycarter
    • How To Link Keyboard Keys to Buttons

      Hello I currently am trying to make a drum machine style plugin.

      I have 16 buttons I assigned as pads with a custom pad Image I imported.

      When I click the pads it triggers the samples in my sampler which is great. The pads light up and everything. However, when I hit the keys on the keyboard, the pads are not linked to the keys. I want the pads to light up as well and be triggered when I hit the keys on the keyboard not just when I click with a mouse, here is the code of my interface so far that I put in the editor to achieve this,

      Content.makeFrontInterface(900, 600);
      
      // ===== Config =====
      const var NUM_PADS  = 16;
      const var BASE_NOTE = 60; // Your C3 maps to MIDI 60
      
      // ===== State =====
      reg eventIds = [];
      const var btnTrigger = [];
      reg suppressBtnCallback = false;
      
      // ===== Helper =====
      inline function setPadLit(index, on)
      {
          if (index < 0 || index >= NUM_PADS || !btnTrigger[index]) return;
      
          suppressBtnCallback = true;                 // don't re-trigger UI callback
          btnTrigger[index].setValue(on ? 1 : 0);     // visually light/unlight
          suppressBtnCallback = false;
      }
      
      // ===== UI Callback =====
      inline function onBtnTriggerControl(component, value)
      {
          if (suppressBtnCallback) return;            // ignore programmatic changes
      
          local index = btnTrigger.indexOf(component);
          if (index == -1) return;
      
          if (value)
              eventIds[index] = Synth.playNote(BASE_NOTE + index, 64);
          else if (eventIds[index] != 0)
              Synth.noteOffByEventId(eventIds[index]);
      }
      
      // ===== Wire up the 16 buttons =====
      var i;
      for (i = 0; i < NUM_PADS; i++)
      {
          btnTrigger[i] = Content.getComponent("Button" + i); // Capital B
          if (btnTrigger[i])
              btnTrigger[i].setControlCallback(onBtnTriggerControl);
      }
      
      // ===== MIDI → UI mirroring =====
      function onNoteOn()
      {
          local idx = Message.getNoteNumber() - BASE_NOTE; // 60 -> index 0
          setPadLit(idx, true);
      }
      
      function onNoteOff()
      {
          local idx = Message.getNoteNumber() - BASE_NOTE;
          setPadLit(idx, false);
      }
      
      

      to my knowledge, and for the past 6 hours of failing at coding with chat gpt, the interface doesn't recognize midi? how can I go about linking the buttons to the keys?

      posted in Scripting
      W
      weezycarter
    • RE: How To Make Fader Move Vertically

      @Lindon what settings in knobman exactly do I have to change for this to animate correctly?

      posted in General Questions
      W
      weezycarter
    • RE: How To Make Fader Move Vertically

      @d-healey Slider Filmstrip.png

      posted in General Questions
      W
      weezycarter
    • RE: How To Make Fader Move Vertically

      @Lindon I do have it set correctly and thats the problem. when I set numstrips to 31 it doesn't do anything. It doesn't start moving until I set numstrip to 30

      posted in General Questions
      W
      weezycarter