In this comp, is there a way to drag each dot (built layer) separately with the mouse, like I can with the white dot layer?
Perhaps this is related to the FR around "Is within..." alpha/depth and maybe Position/orient 3D objects by using the mouse on the rendered output
Comments
You might be able to do it by
You might be able to do it by splitting the
Build List
loop into two loops, one that builds/updates the list of layer center points and one that builds the layers.I made an attempt in that direction, attached. Two main problems. One, the circle flickers between the old and new position as you drag it. This happens because the first
Process List
loop checksIs Point within Layer
every iteration instead of just when the drag starts. Problem two, you can only successfully drag the layer once. The firstProcess List
loop needs to remember the new center instead of continuing to use the original one. Anyway, despite the problems, maybe this gives you something to build on.dragLayer_2016-05-04.vuo
Cool, Jaymie, thank you. I'll
Cool, Jaymie, thank you. I'll chip away.
I was also wondering how
Is Point Within Layer
passes "Rendered Layers" names to the layer port. Is there anything there that could block progress? Edit: I see what you did using "Process Item", nevermind!@jersmi, did you solved the
jersmi, did you solved the flickering problem?
No, tried at the time and
No, tried at the time and tabled it for later, hoping there might be something in 10.3 that might help solve it.