im just learning osc so i apologize if this is a no brainer or covered before.
i have a strobe effect on my composition and a button on my osc device that is supposed to un-bypass the strobe. in other words i push the button and the effect activates. but instead it always bypasses the effect when i push the button not unbypass -- does that make any sense? if so how can i fix this?
osc bypass
Re: osc bypass
There's two ways to do this.
The most correct would be to send the opposite values. So instead of sending a 1 when you press the button and 0 on release, send a 0 on press and 1 on release.
If you don't need control over the opacity of the strobe, you can also send your OSC to the opacity value of the strobe instead.
The most correct would be to send the opposite values. So instead of sending a 1 when you press the button and 0 on release, send a 0 on press and 1 on release.
If you don't need control over the opacity of the strobe, you can also send your OSC to the opacity value of the strobe instead.
Re: osc bypass
That worked perfectly reversing the 0-1 thanks man. I swear i tried that before but maybe I had a dyslexic moment.