Witt Posted August 9, 2009 Share Posted August 9, 2009 I create a simple network: box -> xform -> timeshift xform has expression: ty = hou.frame() timeshift expression: frame = $F-20 all works fine. But if I create analogous python-sop instead of xform, it will ignore the timeshift-node. Why this happens? How to affect python-sop's hou.frame() by timeshift? python-sop: geo = hou.pwd().geometry() f = hou.frame() for point in geo.points(): p = point.position() point.setPosition((p[0], p[1] + f, p[2])) Quote Link to comment Share on other sites More sharing options...
Div Posted August 12, 2009 Share Posted August 12, 2009 (edited) I had the same problem, see my post : A Python Sop would not be recooked at each frame, so you have to use it within a sop solver, or maybe with a feedback sop. Edited August 12, 2009 by Div 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.