Figma 插件:文件更新回调
Figma Plugin: callback on file updated
我发现回调 'on' 有趣但限制 https://www.figma.com/plugin-docs/api/properties/figma-on/#docsNav
我有办法在文件更新后触发事件吗?
目前无法执行此操作。您可以获得的唯一更新类型是选择更改或当前页面更改。这是一个例子 from the 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
}
我发现回调 'on' 有趣但限制 https://www.figma.com/plugin-docs/api/properties/figma-on/#docsNav
我有办法在文件更新后触发事件吗?
目前无法执行此操作。您可以获得的唯一更新类型是选择更改或当前页面更改。这是一个例子 from the 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
}