yashpolke Posted April 10, 2016 Share Posted April 10, 2016 Hello all! So, I am animating a sphere with red colour and transferring that colour to a black grid. Using a solver I then create a lag of the colour value on the grid. The first method I use is ofcourse the Attribute Transfer SOP. This method works great and is perfect The second method I use is a wrangle and I do a pcfilter by Cd and transfer the colour Now the problem using this method is that when I do this transfer of attrib in the solver, it does not create a lag as I expect it to, like the attrib transfer SOP and I am curious as to why that is happening Hopefully someone has the answer to this, any help would be greatly appreciated! -Yash attribTransLag.hipnc Quote Link to comment Share on other sites More sharing options...
Yader Posted April 10, 2016 Share Posted April 10, 2016 (edited) You are not adding to the existing @Cd values in your wranlge, just add a "+=" to your line: v@Cd += pcfilter( handle, "Cd" ); which is the same as: v@Cd = @Cd+pcfilter( handle, "Cd" ); Edited April 10, 2016 by Yader Quote Link to comment Share on other sites More sharing options...
yashpolke Posted April 10, 2016 Author Share Posted April 10, 2016 What a silly mistake, Thank you so much for your help, really appreciate it! 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.