About options

Elements' options' allow us to set options for a particular template element (composition / sequence).
Options are located in a stand-alone element construction - custom_args, you can set all the options you need inside, just separate them by commas.

Options example
"custom_args": {
"comp_name": "Special",
"layer_sets": "3D"
}

We use two options in the example:

  1. comp_name - allows using different title foe the composition (other than in the structure).
  2. layer_sets - adds settings of a layer of the applied composition.

You can have as many options as you wish, just separate them by commas (no duplicates).

Code with options inside the element
"GS_1": {
"enabled": true,
"name": "Scene 1",
"options": false,
"custom_args": {
"comp_name": "Special",
"layer_sets": "3D"
}
}

If you don't need options, then you can delete them, or erase the entire construction custom_args.

Bucket without options
"GS_1": {
"enabled": true,
"name": "Scene 1",
"options": false,
"custom_args": {}
}
Options are deleted
"GS_1": {
"enabled": true,
"name": "Scene 1",
"options": false
}

If the entire construction custom_args is deleted, then you need to delete an extra comma after options.

You can add any amount of options from the list below, don't forget to separate by commas. However, options will not operate if they are tied with other program.