我发现回调'on'很有趣,但是限制了https://www.figma.com/plugin-docs/api/properties/figma-on/#docsNav
文件更新后,有没有一种方法可以触发事件?
目前无法执行此操作。你可以获得的唯一更新类型是选择更改或当前页面更改。这是docs中的示例:
figma.on("selectionchange", () => { console.log("changed") })
插件通常用来监视节点上的更改的方法是轮询:简单地创建一个间隔或计时器,并检查属性之一是否从先前保存的状态更改了。
let interval = setInterval(checkNodes, 500) // check every 300ms
const node = figma.currentPage.selection[0] // first node in selection
let nodeWidth = node.width // store node properties to watch
function checkNodes() {
if (nodeWidth !== node.width) {
// width changed
}
nodeWidth = node.width
}