mart1jn 1 Posted December 23, 2015 In a vex attributewrangle node I'm trying to access all elements of the @pprevious attribute. The @pprevious seams to work differently than @P and @Cd. I cannot figure out what the syntax should be. Could someone help me with that? @Cd = @pprevious; This doesn't give an error but it copies the 1st element of the @pprevious to all elements of @Cd. These all give errors: @Cd.x = @pprevious.x;@Cd.x = @pprevious[0];@Cd.x = @pprevious.0; @Cd.x = @pprevious(0); Im using Houdini 14.0.474. Share this post Link to post Share on other sites
animatrix 287 Posted December 23, 2015 Try v@pprevious.x; 1 Share this post Link to post Share on other sites
mart1jn 1 Posted December 23, 2015 Thank you. I suspected it was something simple. Share this post Link to post Share on other sites