This is probably the most noob question on here, but I’m going to ask anyway: When i’m in performance mode, how do I get my project to start playing ? The space bar does not do it (it works in design mode). Alternately, is there a command to get a midi trigger start the show ? I know how to send Boolean values out of my midi controller but not sure what node to send it to in order to start playback.
Anyone ?
Is there a page in the manual that describes basic setups like this ? Searching through the docs with keywords such as “start playback” does not produce any relevant results.
You can start/stop the playbar with root.time.play
root.time.play = True/False
.
If you get your MIDI value into a CHOP you can use a CHOP Execute DAT to fire that command based on the channel value. Hope this helps
1 Like
Thank you for the tip !