magneto Posted October 21, 2015 Share Posted October 21, 2015 Hi, In the help it says no attributes are bound except detail attributes for read only but can you use getattribute/setattrib to accomplish such a task? If not then what's the use of this Run Over Numbers mode? Thanks Quote Link to comment Share on other sites More sharing options...
anim Posted October 21, 2015 Share Posted October 21, 2015 (edited) yes, getattrib()/setattrib() should work as well as vertex(), point(), prim(), detail() and essentially all cvex functions it just doesn't bind any attribs other than detail as it is not iterating over anything and read only because you are running few instances of the code in parallel, so they would try to override each other, use setattrib() instead which provides additional modes like add, max, min, mult, toggle, append Edited October 21, 2015 by anim 1 Quote Link to comment Share on other sites More sharing options...
magneto Posted October 22, 2015 Author Share Posted October 22, 2015 Thanks anim are you able to create something like a smooth SOP with iterations? I was told this was purely to process specific elements in parallel but not a feedback loop. Quote Link to comment Share on other sites More sharing options...
anim Posted October 22, 2015 Share Posted October 22, 2015 that's correct, this is meant for speeding up smaller number of heavy operations that can benefit from parallel execution so no feedback from elem to elem 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.