Solo/mute drumpad as reaction
Dear all,
Can somebody give a hint on how to mute/solo a drumpad in a drumrack?
This line does not seem to work:
The pads are numbered from C1? Is C1 drumpad 1?
self.drum_device.drum_pads[1].solo = True
Thanks for the help!
Wilfred Adegeest Answered question
self.song().tracks[0].devices[0].drum_pads[0].mute = True
Note that drumpads count from the very bottom.
You can also use just the visible drumpads
self.song().tracks[0].devices[0].visible_drum_pads[0].mute = True
JohnC Answered question
Sign up
User registration is currently not allowed.