Possible bug in add_synth? #418
-
I'm trying to use Note Off messages to trigger the gate on the envelope of a synth. This seems to be the only way to get close to something like a hardware synth where so long as you're pressing the key, the note keeps playing. I'm having a couple of issues with it, though. I'll create separate discussions for each issue. Below is the relevant code:
In this discussion I want to talk about
However, only the value of |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
What does |
Beta Was this translation helpful? Give feedback.
-
Before I started working on the sequencer, and was just playing a pattern
immediately after instantiating a DualOscillator object, everything worked
perfectly. When the effects module was connected, I heard the reverb while
the pattern played. I didn't look into the underlying code to know why it's
behaving differently, tho.
…On Fri, Jan 24, 2025, 7:25 PM Joséphine Wolf Oberholtzer < ***@***.***> wrote:
Honestly, I could have sworn that it would coerce the Bus object to an
int, but I guess I landed the other way. Not sure what's best, given how
few people use this. I don't look at sclang as a guide really, so not sure.
You can always explicitly ask for mapping via my_bus.map_symbol() or
explicitly an index via int(my_bus).
—
Reply to this email directly, view it on GitHub
<#418 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACVNNESXZB3VSLEAPJF3W3L2MKASJAVCNFSM6AAAAABVZYNXJGVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTCOJUGYZTQNQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
out_bus', 'a18'
indicated mapping theout_bus
parameter to a bus, not using the index of that bus. Wrapself.out_bus
inint(self.out_bus)
.