We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support python to script repeated workflows.
Example could be creating a sequence with all color presets for a given group which could look like this:
def main(): group = mizer.ui.select_group() sequence = mizer.sequencer.new_sequence(f'Colors - {group.name}') for color in mizer.presets.colors(): cue = sequence.new_cue(color.name) cue.add_selection(group, color)
The API surface exposed should be idiomatic python. It should be able to control the ui from the script.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Support python to script repeated workflows.
Example could be creating a sequence with all color presets for a given group which could look like this:
The API surface exposed should be idiomatic python.
It should be able to control the ui from the script.
The text was updated successfully, but these errors were encountered: