create_cue_sequence
Generate a sequence of lighting cues by combining existing scenes, specifying transitions, and defining script context for the LacyLights system to enhance theatrical lighting design.
Instructions
Create a sequence of lighting cues from existing scenes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | Project ID to create cue sequence in | |
sceneIds | Yes | Scene IDs to include in sequence | |
scriptContext | Yes | Script context for the cue sequence | |
sequenceName | Yes | Name for the cue sequence | |
transitionPreferences | No |
Input Schema (JSON Schema)
{
"properties": {
"projectId": {
"description": "Project ID to create cue sequence in",
"type": "string"
},
"sceneIds": {
"description": "Scene IDs to include in sequence",
"items": {
"type": "string"
},
"type": "array"
},
"scriptContext": {
"description": "Script context for the cue sequence",
"type": "string"
},
"sequenceName": {
"description": "Name for the cue sequence",
"type": "string"
},
"transitionPreferences": {
"properties": {
"autoAdvance": {
"default": false,
"type": "boolean"
},
"defaultFadeIn": {
"default": 3,
"type": "number"
},
"defaultFadeOut": {
"default": 3,
"type": "number"
},
"followCues": {
"default": false,
"type": "boolean"
}
},
"type": "object"
}
},
"required": [
"projectId",
"scriptContext",
"sceneIds",
"sequenceName"
],
"type": "object"
}