@ustk I kinda figured it out I think, made another Simple Gain in the end of the line and linked to it on the meter, it's working
Posts
-
RE: Peak meter - for inputposted in Scripting
-
Peak meter - for inputposted in Scripting
Hello,
Is there a possibility to create a Matrix Peak Meter, but for an Effect VST? Normal MPM works fine for samplers, synthesizers, etc. but it doesn't move when applied plugin to an audio track in VST.
Also, I'd like to see values of the meter, how can I do that?
Thanks
-
RE: Show value on knob, but not editableposted in Scripting
A little update.
I plotted 16 VSTs with all 23 (46) knobs, with automation on every channel, playing like 50+ sounds at the same time, and nothing happened - for three hours of work I didn't even have a single RAM glitch, which is sometimes happening on a single channel with Serum, for example...
HISE is wonderful and perfectly optimized, so my way on displaying values is doing great. Editing knob's value is also very comfortable, you don't need to try hard to twist on the exact number you want.
Thanks for your help David!
-
RE: Show value on knob, but not editableposted in Scripting
@David-Healey today I learned how to edit knobs in knobman. knob jumping through actual values is much better looking than a normal 0-10 scale like in the original

I'm addicted to it right now
-
RE: Show value on knob, but not editableposted in Scripting
@David-Healey hope it won't cause the gpu eating, there are twice as many knobs

-
RE: Show value on knob, but not editableposted in Scripting
@David-Healey i created a second "knob" with the scale of 0.001 to make it invisible and scaled the tile to fit into the real knob, then - linked to it. one knob makes as a controller, the second one as display. had to make it with every knob, but hey - it's just 10 minutes
-
RE: Show value on knob, but not editableposted in Scripting
@David-Healey needed some time to figure it out

-
RE: Show value on knob, but not editableposted in Scripting
Okay, Gemini helped me, but it can't solve a problem. Only components named Volume and Balance are giving the text, the rest is not reacing:
// 1. Pobieramy okienko wy艣wietlacza const var Label1 = Content.getComponent("Label1"); // 2. Definiujemy jedn膮, wsp贸ln膮 funkcj臋 dla wszystkich knob贸w inline function onKnobUpdate(component, value) { // Pobieramy nazw臋 z pola "text" komponentu i warto艣膰 z 1 miejscem po przecinku local name = component.get("text"); local val = Engine.doubleToString(value, 1); Label1.set("text", name + ": " + val); } // 3. R臋czna lista Twoich knob贸w (wpisz tutaj ich ID) // To jest najpewniejsza metoda w HISE const var knobList = [ Content.getComponent("Volume"), Content.getComponent("Gain"), Content.getComponent("Balance"), Content.getComponent("ReverbMix1") ]; // 4. Przypisujemy funkcj臋 do ka偶dego knoba z listy powy偶ej for(k in knobList) { if(k) // Sprawdzamy czy knob w og贸le istnieje { k.setControlCallback(onKnobUpdate); } } -
RE: Show value on knob, but not editableposted in Scripting
You misunderstood me. I meant something like this, for example in Spire:

-
RE: Show value on knob, but not editableposted in Scripting
@David-Healey Displaying just the value is fine compromise, is there a script for floating tile to do this?
-
RE: Show value on knob, but not editableposted in Scripting
@David-Healey what about the custom textbox, like for example in the corner? I mean, when I change the volume, it shows: "Volume: 70%", when I'm changing the reverb, it says "ReverbMix: 30%" etc etc. Is it possible?
-
RE: Show value on knob, but not editableposted in Scripting
@David-Healey so there is no way to scale the edit box to be only in the middle, for example?
-
RE: Show value on knob, but not editableposted in Scripting
@David-Healey Fine, but the value disappears. I want it to be there, but disable the edit option.
-
RE: Show value on knob, but not editableposted in Scripting
@David-Healey Yes, but there shows the edit range

and the knob works only on a tiny piece on the top. Why? It looks normal when not being edited.

-
Show value on knob, but not editableposted in Scripting
Hello. I wanna make a value to display normally on a knob (in the middle), but I don't want the value to be editable. I can't find any function there to do this.
This causes the knob only working outside the edit value, which is frustrating.
Thanks!