Skip to main content

animations

All Motion animation keyframes on this node, including keyframes created by animation styles and manual keyframe tracks.

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)
}