test-animation
Verify animation operations in Adobe After Effects by testing keyframes and expressions on specified compositions and layers.
Instructions
Test animation functionality in After Effects
Input Schema
Name | Required | Description | Default |
---|---|---|---|
compIndex | Yes | Composition index (usually 1) | |
layerIndex | Yes | Layer index (usually 1) | |
operation | Yes | The animation operation to test |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"compIndex": {
"description": "Composition index (usually 1)",
"exclusiveMinimum": 0,
"type": "integer"
},
"layerIndex": {
"description": "Layer index (usually 1)",
"exclusiveMinimum": 0,
"type": "integer"
},
"operation": {
"description": "The animation operation to test",
"enum": [
"keyframe",
"expression"
],
"type": "string"
}
},
"required": [
"operation",
"compIndex",
"layerIndex"
],
"type": "object"
}