Skip to main content

animationStyles

The Motion animation style instances currently applied to this node. Their props values are the configured property values for this node.

Signature

animationStyles: AppliedAnimationStyle[] [readonly]

Remarks

const node = figma.currentPage.selection[0]
if (node) {
for (const style of node.animationStyles) {
console.log(style.name, style.id, style.props)
}
}