This prevents me from using this feature properly
Best posts made by CatABC
-
When I clicking this button, a bug occurs
-
RE: How to customize the viewport row background color?
@Soundavid Thank you so much, I learned it and I'm so excited!
-
How to use a knob to change the SampleStart values of all samples in a sampler?
How to use a knob to change the SampleStart values of all samples in a sampler?
Please help me. I want to use the CC controller to control the SampleStart values of all samples in a certain sampler. I hope I can get a code snippet. I will be very grateful~! -
RE: How to control the parameters of each key individually?
@ulrik I succeeded,I put Sampler1.selectSounds(""); into oncmbSampleMapControl and it works fine
inline function onknbVolC1Control(component, value) { Sampler1.setSoundProperty(0, Sampler1.Volume, value); }; Content.getComponent("knbVolC1").setControlCallback(onknbVolC1Control); //change samplemap ------------- const var sampleMaps = Sampler.getSampleMapList(); const var fltPreset = Content.getComponent("fltPreset"); const var cmbSampleMap = Content.getComponent("cmbSampleMap"); cmbSampleMap.set("items", sampleMaps.join("\n")); inline function oncmbSampleMapControl(component, value) { GFRNB.asSampler().loadSampleMap(sampleMaps[value-1]); //updateSelectedSounds ---------- Sampler1.selectSounds(""); }; Content.getComponent("cmbSampleMap").setControlCallback(oncmbSampleMapControl);
-
RE: How to control the parameters of each key individually?
@ulrik I succeeded, thank you very much, give you
-
RE: Custom Knob works only by dragging from the top.
@ulrik HISE-develop before June did not have this problem.