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

    Posts

    Recent Best Controversial
    • RE: When automating knobs drawing line is slow

      @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);
      	});
      }
      
      posted in Scripting
      D
      darkInteger
    • When automating knobs drawing line is slow

      Hi guys!

      I have some knobs as faders, i connect their needle with drawing lines for cosmetic purposes.
      In a built vst everything is working fine if i grab the faders withbthe mouse, the lines follow the needles as supposed but if i automate the faders the drawing the lines are getting slow like they are behind the needle.
      What is up whit this?

      posted in Scripting
      D
      darkInteger
    • RE: LAF: get a value of a knob by its id

      @d-healey THX!!!

      posted in Scripting
      D
      darkInteger
    • RE: LAF: get a value of a knob by its id

      @d-healey well, the code is a mess :S I am just started learning.
      But I know I can use obj.value to get the value but I don't know how to specify it with its id... what is the syntax?

      posted in Scripting
      D
      darkInteger
    • RE: LAF: get a value of a knob by its id

      @d-healey Basically I have like 10 knobs LAF assigned and I want to draw lines between its values for UI purposes.

      posted in Scripting
      D
      darkInteger
    • LAF: get a value of a knob by its id

      Hi guys!

      In a custom LAF how can I get a value of a knob by its id?

      posted in Scripting
      D
      darkInteger
    • RE: range

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

      posted in Scripting
      D
      darkInteger
    • RE: range

      @d-healey THX!!!
      Any hint how?
      Should I use Math.to0To1?

      posted in Scripting
      D
      darkInteger
    • range

      Hi guys!

      I am trying to make a custom LAF on a knob.
      It is going to be a slider, I have a horizontal line and a short vertical line on the horizontal one which is the slider itself.
      I want to use the obj.value to drive the vertical line but I just couldn't figure out how to convert it to the horizontal line's range.
      For example: the knob's range 10-700 Hz --> 128 pixel wide

      posted in Scripting
      D
      darkInteger
    • RE: make a knob unclickable

      @clevername27 THX!!!

      posted in General Questions
      D
      darkInteger
    • make a knob unclickable

      Hi guys!

      How can I make a knob unclickable.
      I want to use it as a GUI element but not clickable.

      posted in General Questions
      D
      darkInteger
    • RE: Scriptnode osc pitch question

      @Christoph-Hart THX!!!!!
      Works perfectly!

      posted in General Questions
      D
      darkInteger
    • RE: Scriptnode osc pitch question

      @Christoph-Hart the peak node is the problem.
      I had to set the min-max values for the add node.
      I put a peak node after and its value is always at max, I can't set its min-max.
      Is there another way to send the modulation signal?

      posted in General Questions
      D
      darkInteger
    • RE: RNBO Delay bugs (and one user request?)

      @ulrik thx!
      I know these videos.
      I can import the dlls into a hardcodedfx but I couldn't figure out how to put it into scriptnode...
      I can't see the dll under load dsp network.

      PS: I just figured it out, you can load it into scriptnode as a template!!!

      posted in Bug Reports
      D
      darkInteger
    • RE: RNBO Delay bugs (and one user request?)

      @Profbx can I have a question?

      Is it a scriptfx you are using? How to load an RNBO patch into it?
      I couldn't find a way yet.

      posted in Bug Reports
      D
      darkInteger
    • RE: Scriptnode osc pitch question

      @Christoph-Hart I am building a sound fx generator kinda synth, where I want to control the pitch via Midi and with a value knob to have like big sweeps across the freq spectrum.

      Basically I want to have the midi info as freq and add the value (-3000 - 3000 Hz) realtime.

      posted in General Questions
      D
      darkInteger
    • RE: Scriptnode osc pitch question

      @aaronventure THX for the hint!

      All works good until I add the math.add node.
      First I convert the midi2Freq which I connect to the osc freq and that is working.
      But as I add the math.add node the peak node is up at the max value all the time.

      posted in General Questions
      D
      darkInteger
    • RE: Scriptnode osc pitch question

      @Christoph-Hart is it possible to combine a knob value and the midi value?

      posted in General Questions
      D
      darkInteger
    • RE: Scriptnode osc pitch question

      @Christoph-Hart
      Thank you!
      Whai if I want the midi info and the pitch info combined?

      posted in General Questions
      D
      darkInteger
    • Scriptnode osc pitch question

      Hi guys!

      I have a Scriptnode Synth with only one scriptnode oscillator(poly).
      If I change the pitch and I play a note it is changing but as I leave the pitch knob alone the osc plays the original pitch again not lookiong at the pitch knob info.
      How can I switch this off? I want my osc on that pitch I set with the knob and follow the notes with it.

      posted in General Questions
      D
      darkInteger