Set tempo half speed
-
Is it a way to set the tempo at half speed?
I want to be able to have the midi player play at 1/2 speed
(part of a randomize script im working on)..Is it a way to accomplish this? even when the host tempo is changed?
-
@BWSounds could this work?
Engine.setHostBpm(Engine.getHostBpm() / 2);
-
@ulrik
Looks good, i'll mess around with it and see what happens..Thank you.