HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. lalalandsynth
    3. Topics
    • Profile
    • Following 1
    • Followers 8
    • Topics 220
    • Posts 1,695
    • Groups 1

    Topics

    • lalalandsynthL

      Are the osc in hise phase locked?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      1
      0 Votes
      1 Posts
      180 Views
      No one has replied
    • lalalandsynthL

      Scriptnode Clockramp in AU MIDI-FX

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      1
      0 Votes
      1 Posts
      177 Views
      No one has replied
    • lalalandsynthL

      Exporting interface as png?

      Watching Ignoring Scheduled Pinned Locked Moved Feature Requests
      3
      0 Votes
      3 Posts
      239 Views
      lalalandsynthL

      @Christoph-Hart Sweet , thanks !

    • lalalandsynthL

      VST3 in High Sierra ?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      227 Views
      lalalandsynthL

      @ulrik Its not working in Reaper on High Sierra , I will send you a VST3 via pm.
      Thanks mate.

    • lalalandsynthL

      Protools & Reaper Touch automation "jitter" problem.

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      2
      0 Votes
      2 Posts
      243 Views
      lalalandsynthL

      Same problem in Logic with AUv2. Bit better maybe but jagged.

    • lalalandsynthL

      Pro Tools developer version question

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      238 Views
      lalalandsynthL

      @Lindon Ah , I neglected that, let me try again. Thanks!

      SOLVED> That was indeed the problem :)

    • lalalandsynthL

      AAX Compile problem.

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      240 Views
      lalalandsynthL

      @orange Indeed , was set to use iPP which I do not have installed :)

    • lalalandsynthL

      Vector fuzziness?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      9
      0 Votes
      9 Posts
      400 Views
      orangeO

      On Windows, if the monitor has a 4k (or more) resolution, and using a resolution factor higher than 100% for the Operating System , that happens. I think it is a Windows thing.

      alt text

    • lalalandsynthL

      Better Table editor

      Watching Ignoring Scheduled Pinned Locked Moved Feature Requests
      4
      0 Votes
      4 Posts
      427 Views
      lalalandsynthL

      @Christoph-Hart understood, thought i would put the suggestions out there.
      Isnt the c++ code in an external tile disabled when the ui is not visible , seem to recollect we had that problem. Or do you have in mind that its just a ui object that then runs the underlying default table?

    • lalalandsynthL

      Popup panel?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      9
      0 Votes
      9 Posts
      487 Views
      Christoph HartC

      Adding new popups is not the best idea in plugins as this is usually something that will not work consistently across different hosts, so I would recommend trying to work inside the window that you already have.

    • lalalandsynthL

      Voice allocation etc.

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      308 Views
      Christoph HartC

      @lalalandsynth not sure if it works, but if you set all RR groups to 9 and only put in a sample in a single group (so sampler 1 has a sample in RR group 1, sampler two has a single sample in RR group 2 etc) you might get your voice allocation across multiple samplers.

    • lalalandsynthL

      Automation slots?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      8
      0 Votes
      8 Posts
      485 Views
      Christoph HartC

      @DanH Actually this is precisely for that use case of having a fixed amount of automation slots and then reassigning them dynamically.

      The documentation of the UserPresetHandler class has some information on how to use it, but here's one example:

      const var uph = Engine.createUserPresetHandler(); // We need to implement our own preset data model when we start using // custom automation slots (because then the connection between UI element and its value is // not consistent anymore) function onPresetLoad(obj) {} function onPresetSave() { return {}; } uph.setUseCustomUserPresetModel(onPresetLoad, onPresetSave, false); // We'll define the automation model to send their values to the global cable by default const var data = [{ "ID": "Slot 1", "connections": [ { "cableId": "Slot 1" }] }]; uph.setCustomAutomation(data); // We can also attach callbacks directly to automation events inline function onAutomation(index, value) { Console.print(trace({"index": index, "value": value})); } uph.attachAutomationCallback("Slot 1", onAutomation, true);

      However it's a fairly advanced concept as it requires you to dissolve the connection between UI elements and their persistent value and implement a custom user preset model so it might be overkill for that simple use case.

    • lalalandsynthL

      Filter question.

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      226 Views
      Christoph HartC

      @lalalandsynth The filter coefficients used for the filter display are just approximates but the actual filter itself is using 6dB/octave.

      If you want it to reflect on the filter display, you need to change the getApproximateCoefficients() method of the OnePole class.

    • lalalandsynthL

      Can someone clarify the AU format?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      1
      0 Votes
      1 Posts
      151 Views
      No one has replied
    • lalalandsynthL

      UI/Graphics Forum Category.

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      1
      1 Votes
      1 Posts
      217 Views
      No one has replied
    • lalalandsynthL

      Figma to HISE?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      21
      0 Votes
      21 Posts
      955 Views
      lalalandsynthL

      Wanted to see if I could do a classic cheat and just move the little green indicator rather then the whole knob graphic, seems to work nicely if you set the export up right.
      prog.gif

    • lalalandsynthL

      Audio waveform loader

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      273 Views
      Christoph HartC

      @Brian just use the processorId of the sampler module then the sampleIndex property will determine which sample to show (and -1 will show the most recently played sample).