Skip to main content

removeManualKeyframeTrack

Removes the manual Motion keyframe track for a property, paint, or effect field on this node.

Signature

removeManualKeyframeTrack(field: KeyframeField): void

Parameters

field

The property, paint, or effect field to remove.

Remarks

const node = figma.currentPage.selection[0]
if (node) {
node.removeManualKeyframeTrack({
type: 'PROPERTY',
name: 'TRANSLATION_X',
})
}