animations
All Motion animation keyframes on this node, including keyframes created by animation styles and manual keyframe tracks.
Supported on:
- BooleanOperationNode
- CodeBlockNode
- ComponentNode
- ComponentSetNode
- ConnectorNode
- EllipseNode
- EmbedNode
- FrameNode
- GroupNode
- HighlightNode
- InstanceNode
- InteractiveSlideElementNode
- LineNode
- LinkUnfurlNode
- MediaNode
- PolygonNode
- RectangleNode
- SectionNode
- ShapeWithTextNode
- SliceNode
- SlideGridNode
- SlideNode
- SlideRowNode
- SlotNode
- StampNode
- StarNode
- StickyNode
- TableNode
- TextNode
- TextPathNode
- TransformGroupNode
- VectorNode
- WashiTapeNode
- WidgetNode
Signature
animations: Animations [readonly]
Remarks
const node = figma.currentPage.selection[0]
const translationX = node?.animations.TRANSLATION_X
if (translationX) {
console.log(translationX.timelineDuration, translationX.tracks)
}