Hi All,
I’m writing a plugin to Figma and I want to ignore hidden elements/nodes, but not sure what’s the proper way to do that as it’s not straight forward based on the docs:
- The node isn’t necessarily visible if this is
.visible === true
. - The node isn’t necessarily invisible if this is
.visible === false
. - An object is visible if
.visible == true
for itself and all its parents.
visible | Plugin API
Anyone was able to solve this issue and knows what’s the right logic?