-
Notifications
You must be signed in to change notification settings - Fork 105
Open
Labels
Description
- Code Connect CLI version: 1.4.2
- Operating system - macOS Tahoe
I’m having trouble using findLayers() to locate specific layers. I have the following layer structure:
I want to select the Content layer, then get its Rows as an array, and within each row access the Left side and Right side layers. This would let me easily align the content in the Code Connect example.
However, I can’t get this working with:
instance.findLayers((n) => n.name === 'Content');or even with:
instance.findLayers((n) => n.name === 'Content', { traverseInstances: true });Reactions are currently unavailable