This is all excellent information. Thank you for all your help, there is a ton of stuff I've been doing that works, but is really badly optimized. Time to go clean up some code and see if I can improve the designs.
Do you have a patreon? I feel like I owe you a beer.
Search found 4 matches
- Wed Jan 27, 2021 11:14 pm
- Forum: Module Designer
- Topic: How to implement TubePreamp
- Replies: 7
- Views: 4923
- Wed Jan 27, 2021 6:03 pm
- Forum: Module Designer
- Topic: How to implement TubePreamp
- Replies: 7
- Views: 4923
Re: How to implement TubePreamp
case Knob_Changed:
{
if (component == driveKnob) {
t00b.SetDrive(doubleValue);
}
}
break;
I never thought of this! I was setting values individually, this makes much more sense.
If there's math involved, can that be included in the notify method, also? For example,
case Knob_Changed ...
- Mon Jan 25, 2021 3:41 pm
- Forum: Module Designer
- Topic: How to implement TubePreamp
- Replies: 7
- Views: 4923
Re: How to implement TubePreamp
Thanks!
I did download the Dev Kit, and I've been trying to learn how to interpret code, but I'm still very green and stuff like this slips by me pretty easily. I also read the Java documentation, I think its more a lack of understanding on how to implement it when I'm writing code. I started ...
I did download the Dev Kit, and I've been trying to learn how to interpret code, but I'm still very green and stuff like this slips by me pretty easily. I also read the Java documentation, I think its more a lack of understanding on how to implement it when I'm writing code. I started ...
- Mon Jan 25, 2021 5:58 am
- Forum: Module Designer
- Topic: How to implement TubePreamp
- Replies: 7
- Views: 4923
How to implement TubePreamp
Hello! I'm new to both Java and Designer, and while I'm attempting to learn Java as I learn Designer, I'm having trouble with the TubePreamp class.
I have a module with an analog oscillator generating a sine wave and a noise generator producing white noise. There is a knob control that ring ...
I have a module with an analog oscillator generating a sine wave and a noise generator producing white noise. There is a knob control that ring ...