@Sampletekk Have you enabled saveInPreset for your close button?

Posts
-
RE: Preset browser closes when selecting a preset
-
RE: OS for compiling in Linux?
@bendurso Proxmox is free and open source, there is a paid repo with some enterprise stuff but we don't need it. I followed this course - https://www.youtube.com/playlist?list=PLT98CRl2KxKHnlbYhtABg6cF50bYa8Ulo
-
RE: Sampler question
@rglides said in Sampler question:
is this really the only method for handling a situation like this?
Add this in
on init
Engine.setAllowDuplicateSamples(false); // Yes false is correct, makes no sense to me either
-
RE: Sample stops playing when key is released
@pcs800 If you enable one-shot mode in the sampler's playback settings it will do this without any scripting.
-
RE: OS for compiling in Linux?
@bendurso The only distro I know that somewhat runs on Apple silicon is Asahi Linux, but I believe there are still some driver issues and I'm not sure which generation of M chip it supports.
I believe if you manage to install it, and then manage to build HISE on it, you'll end up with an ARM build that probably won't run on many (or any) other distros.
All of this is a guess because I haven't tried it.
I think you'll have better luck using an Intel/amd system, either dedicated to Linux or using a virtual machine. I do all my builds with virtual machines on a Proxmox server.
-
RE: Buttons don't update plugin parameters
@tomekslesicki Do you need to enable meta parameter for that?
-
RE: Multiband Compressor UI
@hyperphonias Copy the snippet, then in HISE go to File >> Import HISE Snippet
-
RE: xy pad help(modulated audio)
@BWSounds Yeah you can use
Synth.stopTimer()
when you don't need it to run. -
RE: xy pad help(modulated audio)
@BWSounds said in xy pad help(modulated audio):
OK so I got it to work on the full project... Hallelujah.. now one other issue...
Excellent :D
@BWSounds said in xy pad help(modulated audio):
I believe the timer is still running and now the option
Is there a reason you can't stop the timer?
-
RE: Is it possible to link parameters between plugins?
@Christoph-Hart said in Is it possible to link parameters between plugins?:
give you network communication
Excellent, I can have a lan party with my snake game :)
-
RE: Parameter Values not being shown in panels for frequency point other than 0
@pcs800 I just watched my video again, perhaps you can achieve what you need using the BandSelected broadcaster which is already available in the develop branch.
-
RE: Compiling Mac Plugin Issues
@xxx Indicates the issue is probably related to the network... I don't have any suggestions though.
Regarding the wizard, it doesn't work reliably on Mac or Linux, seems to be ok on Windows though. I'm just avoiding it until it's stable.
-
RE: xy pad help(modulated audio)
@BWSounds I'm not sure if those changed calls will fire reliably. See if setting the modulator intensity directly in the timer callback instead of going through the knob callbacks solves the issue.
for (i = 0; i < 2; i++) //(if I deleate knob 2 it shows error)
Change the
2
to a1
-
RE: Compiling Mac Plugin Issues
@xxx Have you compiled the networks to a dll?
-
RE: xy pad help(modulated audio)
@BWSounds said in xy pad help(modulated audio):
If I delete those, it throws an error
What's the error? What do the hidden controls do?
-
RE: xy pad help(modulated audio)
@BWSounds Are the hidden controls needed?