Jump to content

collect pop doesnt collects attributes


Nibbler

Recommended Posts

you need to understand you have 2 sets of points left and right

lets say 3 left and 3 right to make things simple

you are creating them and setting attributes in separate branches

so they look like this

left:

pt0 - left attribute: -1,0,0

pt1 - left attribute: -1,1,0

pt2 - left attribute: -1,2,0

right:

pt0 - right attribute: 1,0,0

pt1 - right attribute: 1,1,0

pt2 - right attribute: 1,2,0

but when you collect them, they'll get appended one after another so you'll get 6 points in total with corresponding values (all points will have attributes from all branches, but for any attribute that the point originally didn't have it gets assigned default value of that attrib, in your case 0,0,0)

so they will look like this

pt0 - left attribute: -1,0,0 right attribute: 0,0,0 <-- pt0 from left branch

pt1 - left attribute: -1,1,0 right attribute: 0,0,0 <-- pt1 from left branch

pt2 - left attribute: -1,2,0 right attribute: 0,0,0 <-- pt2 from left branch

pt3 - left attribute: 0,0,0 right attribute: 1,0,0 <-- pt0 from right branch

pt4 - left attribute: 0,0,0 right attribute: 1,1,0 <-- pt1 from right branch

pt5 - left attribute: 0,0,0 right attribute: 1,2,0 <-- pt2 from right branch

so for me Collect POP seems to work like expected

Edited by anim
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...