CinnamonMetal Posted January 21, 2020 Share Posted January 21, 2020 Within a DOPNet I have a SOPSolver, within the SOPSolver I'm using a point wrangler to only retrieve the velocity using @opinput1_v.z = 2.3; but the attribute is not being imported into the wrangler for the second input of the point wrangler ? Quote Link to comment Share on other sites More sharing options...
Atom Posted January 21, 2020 Share Posted January 21, 2020 (edited) That looks like an assignment, not a fetch. I'm not sure if you can issue assignment via @opinput. (wouldn't that be @opoutput, which doesn't exist?) Try... vector my_v = @opinput1_v; float my_v_z = my_v.z; Edited January 21, 2020 by Atom Quote Link to comment Share on other sites More sharing options...
CinnamonMetal Posted January 21, 2020 Author Share Posted January 21, 2020 (edited) The vector attribute is still not being imported ? Edited January 22, 2020 by CinnamonMetal Syntax Mistake in previous post 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.