Forum

    • Register
    • Login
    • Search
    • Categories
    1. Home
    2. Tags
    3. lfo
    Log in to post
    • All categories
    • marcLab

      LFO modulator FadeIn time not working in Container gain modulator
      General Questions • lfo • • marcLab

      3
      0
      Votes
      3
      Posts
      43
      Views

      marcLab

      Thanks! That's what we did!

    • d.healey

      LFO seems (partly) broken
      Bug Reports • lfo frequency • • d.healey

      4
      0
      Votes
      4
      Posts
      57
      Views

      d.healey

      I made a video showing the comparison:

    • Dark Boubou

      Confusion speed btw LFO speed sync/non-sync makes HISE bug
      General Questions • lfo min sync values max • • Dark Boubou

      10
      0
      Votes
      10
      Posts
      1548
      Views

      Dark Boubou

      Well yeah I opened it, it works but not when I insert it in my code, but I'm sure it's about onctrol.
      I have found another solution!

      Add knob, speed LFO knob. When you select 'not sync button' (position 1), the knob has range 0 to 50.
      Until here that's the same as before.
      But if I insert this condition:

      inline function onBUTTONControl(component, value) { KNOBHERTZ.set("visible", value); }; BUTTON.setControlCallback(onBUTTONControl);

      And then add a second knob, with value 0 to 1 for synchro, then add this similar line:

      inline function onBUTTONControl(component, value) { KNOBSYNC.set("visible", !value); //Inverse value of the other knob }; BUTTON.setControlCallback(onBUTTONControl);

      And then it switches btw the two knobs, but we don't see it! 😄

      I go try it, I hope it works 😛