Hi,
I have a list of vertices in a list like - vertexList=[48,47]
Now I want to traverse this list and get the node property "Type" of its previous node.
So I wrote this script
i=-1; vertexProperty=[]
while(++i<vertexList.size()) vertexProperty[i]=vertexList[i].in('CATEGORY').Type
But in the vertexProperty list I did not have the property value stored, rather had information about pipes like-
[StartPipe, InPipe(CATEGORY), PropertyPipe(Type)]
[StartPipe, InPipe(CATEGORY), PropertyPipe(Type)]
How to get the property from these pipes ???
Regards,
Nikhanj