Hi i’m using some code to bypass stuff when midi notes are hit. I just discovered groups and I’m wondering how to call the group in my code and bypass it. I tried entering the group name but it doesn’t work.
code looks like this:
op(‘lefthand’).bypass = dat[41,0] == 1
return
lefthand is the name of the group im trying to bypass
I would caution against turning cooking on and off for ops except during development. Turning them off is usually okay, but turning them on again will nearly always cause frame drops or other performance problems - which has always caused me headaches for installations or live sets.
If you have no other options but bypassing / stopping cooking on a group of ops, I’d instead suggest encapsulating them in a base with any necessary in / out ops or select ops. Then bypassing the base. Another option here would be to use tags.
When it comes to op groups - I don’t think that made it to python (at least I can’t find it anywhere in the docs). I did find a tscript reference for this set of functions, but I think this feature might be lost to time.
Awesome thanks ya I came to the realization that cutting things off doesn’t look that good anyway. fades are much nicer to look at. Thanks for the reply!