Get Keyframes
get_keyframesReads keyframe data (frame, value, interpolation) from a specific animation track. Combine with list_tracks to discover animated parameters. Optionally filter by frame range.
Instructions
Read the keys on a specific animation track. Combine with list_tracks to discover which (param_id, component) pairs are animated. Returns [{frame, value, interp}]. Optional start_frame / end_frame clip the range inclusively.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fps | No | Override for BaseTime → frame conversion. | |
| handle | Yes | Animated entity. | |
| param_id | Yes | Top-level description id of the parameter. | |
| component | No | Sub-component for vector parameters. Omit / null for scalar tracks. | |
| end_frame | No | Inclusive upper frame bound. | |
| start_frame | No | Inclusive lower frame bound. |