[ANSWERED] Manually trigger a GLSL shader to activate
-
is there a way to program a glsl shader to be able to listen for a trigger, and activate the shader. For example https://www.shadertoy.com/view... this shockwave shader. My goal is to program the shader to a button on a midi board.
-
click on "reset" in the Wave generator and don't forget to set the phase to 49 or to invert on/off in bypass of the GLSL actor
Best regards,
Jean-François
-
-
@juriaan said:
If you want to connect it to a MIDI button you can use the Trigger value actor. (1 = On, 0 = Off), that gets triggered by a Note Watcher
or if your MIDI board sends MIDI CC then you can use a Control Watcher. Make sure you configure your MIDI device in the MIDI Setup menu, accessed from the Communications menu.
-
Great! thanks for the help.