HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. darkInteger
    3. Topics
    D
    • Profile
    • Following 0
    • Followers 0
    • Topics 9
    • Posts 34
    • Groups 0

    Topics

    • D

      When automating knobs drawing line is slow

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      3
      0 Votes
      3 Posts
      256 Views
      D

      @d-healey here is the drawing function, I call this when I move the knobs.

      function connect() { bg.setPaintRoutine(function(p) { p.setColour(0xFF6F6F6F); p.drawLine(oscFreq.getValueNormalized() * 114 + 27, oscFreqSlide.getValueNormalized() * 114 + 27, 105, 155, 1); p.drawLine(oscFreqSlide.getValueNormalized() * 114 + 27, oscFreqMacro.getValueNormalized() * 114 + 27, 155, 205, 1); p.drawLine(delayTime.getValueNormalized() * 114 + 27, delayTimeSlide.getValueNormalized() * 114 + 27, 265, 315, 1); p.drawLine(delayTimeSlide.getValueNormalized() * 114 + 27, delayTimeMacro.getValueNormalized() * 114 + 27, 315, 365, 1); p.drawLine(freqShifter.getValueNormalized() * 114 + 27, freqShifterSlide.getValueNormalized() * 114 + 27, 425, 475, 1); p.drawLine(freqShifterSlide.getValueNormalized() * 114 + 27, freqShifterMacro.getValueNormalized() * 114 + 27, 475, 525, 1); p.drawLine(wideFreq.getValueNormalized() * 114 + 307, wideFreqSlide.getValueNormalized() * 114 + 307, 105, 155, 1); p.drawLine(wideFreqSlide.getValueNormalized() * 114 + 307, wideFreqMacro.getValueNormalized() * 114 + 307, 155, 205, 1); p.drawLine(width.getValueNormalized() * 114 + 307, widthSlide.getValueNormalized() * 114 + 307, 265, 315, 1); p.drawLine(widthSlide.getValueNormalized() * 114 + 307, widthMacro.getValueNormalized() * 114 + 307, 315, 365, 1); p.drawLine(pan.getValueNormalized() * 114 + 307, panSlide.getValueNormalized() * 114 + 307, 425, 475, 1); p.drawLine(panSlide.getValueNormalized() * 114 + 307, panMacro.getValueNormalized() * 114 + 307, 475, 525, 1); }); }
    • D

      LAF: get a value of a knob by its id

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      7
      0 Votes
      7 Posts
      360 Views
      D

      @d-healey THX!!!

    • D

      range

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      5
      0 Votes
      5 Posts
      279 Views
      D

      @d-healey THX for the help, got it working!!!

    • D

      make a knob unclickable

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      197 Views
      D

      @clevername27 THX!!!

    • D

      Scriptnode osc pitch question

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      14
      0 Votes
      14 Posts
      617 Views
      A

      @Christoph-Hart How would you go about getting the Freq Ratio knob in a core.oscillator to work with a Pitch Modulator in the tree?

      I have a Waveform generator with a purple voice start constant pitch mod (for detune).

      I have a polyphonic script node network using the core.oscillator as a modsource to introduce AM.

      If I detune the the pitch mod to anything other than +-12, it sounds awful. Lower notes sound like there's a slow LFO and higher notes sound like there's a fast LFO.

      I thought I found the fix - I added a core.pitch_mod to the modchain and connected that to the Freq Ratio Knob.

      There's only one problem.

      You can't compile a dsp network with the core.pitch_mod. What other node could I use to achieve the same thing?

      Thanks!

    • D

      Custom (finer) knob resolution

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      305 Views
      D

      @aaronventure
      Thx!!!
      I got it: Knob1.setRange(0, 1, 0.0001)

    • D

      RNBO randomize parameters

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      11
      0 Votes
      11 Posts
      424 Views
      D

      @ulrik thx!!!! gonna try it!

    • D

      Can I use RNBO synth patches in HISE?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      10
      0 Votes
      10 Posts
      541 Views
      D

      THX! all clear now!