davidyannick 6 Posted June 10 I'd like to make a loop like this and I'm looking a way to rotate cubes like in this animation without using MOPS can you help me please ? Thanks rot_boxes.hiplc Share this post Link to post Share on other sites
konstantin magnus 1,175 Posted June 10 Hi David, in Houdini you would probably move and rotate the points in a wrangle: v@P.z -= @Time; matrix3 m = ident(); float amount = smooth(0.0, 1.0, v@P.z) * v@P.z; rotate(m, amount, {0,0,1}); p@orient = quaternion(m); rot_boxes_km.hipnc 1 1 Share this post Link to post Share on other sites
davidyannick 6 Posted June 10 45 minutes ago, konstantin magnus said: Hi David, in Houdini you would probably move and rotate the points in a wrangle: v@P.z -= @Time; matrix3 m = ident(); float amount = smooth(0.0, 1.0, v@P.z) * v@P.z; rotate(m, amount, {0,0,1}); p@orient = quaternion(m); rot_boxes_km.hipnc super thanks Konstatin ! Share this post Link to post Share on other sites