@jeffd Click this

Then I think you go to Installed > Generators
But before you do that, open the plugin manager (it's in one of the menus at the top) and rescan plugins.
@jeffd Click this

Then I think you go to Installed > Generators
But before you do that, open the plugin manager (it's in one of the menus at the top) and rescan plugins.
Anyone else with FL Studio able to give it a try?
@Felix-W Break it down. Make a minimal project with one sampler where notes only trigger during legato transitions. Once you get that working you can start to incorporate it into your project.
@Yannrog said in Get, post API Hise language.:
if the payment is valid, the plugin is activate. if the payment is unvalid, the plugin is greyed out.
This will be easy to hack - you might consider something like Moonbase which supports subscriptions.
@dannytaurus said in Stop pruning default values from XML?:
because I'm setting some values in script that happen to be default values.
Hmm this might be the source of an issue I was having too, I might try it.
@ustk said in Animated modulation:
Have you had a look at the PR count lately?
Yes, I'm trying to restrict myself from piling too much on Christoph.
@ustk said in Animated modulation:
@David-Healey unfortunately no it's not tied to the plotter methods...
I've got Claude on the case
@brucerothwell Yes, first you need to learn how to use custom look and feel (laf). Then search the forum for peak meter laf, or vu meter laf.
Also there's a snippet here that shows how to do it without using filmstrips which is usually a better way to go if it fits your design: https://forum.hise.audio/topic/13154/knob-web-studio/66?_=1781298298486
@dannytaurus I'm doing this for my Sordina effect plugin, for my sample libraries I let them save though.
@Felix-W in the legato sampler add a script that plays notes when there is a legato transition. You make it work independently of the other samplers.
@zachhealy1005 said in Linux:
so compiling hise on my laptop is in fact impossible.
If you reduce the number of compile threads to 1 or 2 it might still compile.
make CONFIG=Release -j 2
@Oli-Ullmann said in Logic crashes on startInternalDrag:
You can also use pluginval to test AU plug-ins.
Ah that's good to know!
@Oli-Ullmann said in Logic crashes on startInternalDrag:
pluginval
I think that only handles VST, I'm talking about AUVal which is included with macOS
Moonbase have a little article about it: https://moonbase.sh/articles/debugging-your-audio-unit-plugin-with-auval-aka-auvaltool/
@Oli-Ullmann Does AUVal provide any insight?
inline function updatePresetLabel(nameOnly: number)
{
if (!isDefined(currentPresetFile))
return;
local category = currentPresetFile.getParentDirectory().toString(currentPresetFile.NoExtension);
local name = currentPresetFile.toString(currentPresetFile.NoExtension);
if (nameOnly)
btnPresetBrowser.set("text", name);
else
btnPresetBrowser.set("text", category + " | " + name);
}
I also call this in the post save callback too.
@Oli-Ullmann said in Logic crashes on startInternalDrag:
Both versions (AU and VST3) work in Reaper. So it seems to be a Logic issue. :-(
Can you recreate the issue in a minimal snippet?