AlbertR Posted October 6, 2011 Share Posted October 6, 2011 How can I render a random set of frames (ex. 4,24,56,112,345) ? Quote Link to comment Share on other sites More sharing options...
symek Posted October 6, 2011 Share Posted October 6, 2011 (edited) How can I render a random set of frames (ex. 4,24,56,112,345) ? You mean like a complete random? Easy! This in post-frame script parm: fcur `rand($F)*$RFEND`; render out/$OS and toggled on "Block Until Render Complete" on a Rop will generate infinite number of frames chosen randomly from a frange. Please, don't do this, it will run forever! Seriously, you need to script a command. In Python shell anything along the line: frames = ( 4,24,56,112,345 ) rop = hou.node("/out/mantra") for frame in frames: hou.setFrame(frame) rop.render() hth, skk. Edited October 6, 2011 by SYmek Quote Link to comment Share on other sites More sharing options...
Stalkerx777 Posted October 6, 2011 Share Posted October 6, 2011 How can I render a random set of frames (ex. 4,24,56,112,345) ? There is also Frame Dependency ROP. 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.