how to assign +/- 1 bpm to pad
Hello,
Is there a reaction to assign :
Pad 1 > +1 bpm
Pad 2 > -1 bpm
Thank you !
admin Changed status to publish
live object model > song > set tempo
Change the ‘number’ param to custom code and enter:
self.song().tempo + 1
or
self.song().tempo – 1
Or the full syntax is:
self.song().tempo = self.song().tempo + 1
self.song().tempo = self.song().tempo – 1
admin Changed status to publish
Sign up
User registration is currently not allowed.