You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When assigning a scene's init_patch, a TypeError occurs upon running mididings if the init_patch is not a list.
i.e. This raises an error:
run(scenes={ 1:Scene('myScene',Pass(), Pass() ) })
while this does not:
run(scenes={ 1:Scene('myScene',Pass(), [Pass()] ) })
Notice the second Pass(), which is the init_patch.
I am not sure whether this is desired behaviour since it is not clear from the documentation.
The text was updated successfully, but these errors were encountered:
I tried to make the init_patch working on my Edirol SD-90 and I'm unable. So i found your post and tried the init patch as a list and I observe no changes.
@stefets I just tried and cannot reproduce the original issue. Unfortunally, @noedigcode didn't specify what kind of error was raised, if you can be more explicit about yours (and provide a bit of context) maybe we can help.
When assigning a scene's init_patch, a TypeError occurs upon running mididings if the init_patch is not a list.
i.e. This raises an error:
run(scenes={ 1:Scene('myScene',Pass(), Pass() ) })
while this does not:
run(scenes={ 1:Scene('myScene',Pass(), [Pass()] ) })
Notice the second Pass(), which is the init_patch.
I am not sure whether this is desired behaviour since it is not clear from the documentation.
The text was updated successfully, but these errors were encountered: