ch3 Posted June 30, 2014 Share Posted June 30, 2014 The line below works, but I was wondering if there is a better and more compact way to syntax the texture file path, so it increments the texture frame, on every other frame of the timeline. $JOB+"/textures/party_18."+padzero(4,floor($F*0.5))+".exr" thanks Quote Link to comment Share on other sites More sharing options...
anim Posted June 30, 2014 Share Posted June 30, 2014 not much more compact, but you can drop a few + and " characters $JOB/textures/party_18.`padzero(4,floor($F*0.5))`.exr Quote Link to comment Share on other sites More sharing options...
ch3 Posted June 30, 2014 Author Share Posted June 30, 2014 right ok... thank you Quote Link to comment Share on other sites More sharing options...
Serg Posted July 3, 2014 Share Posted July 3, 2014 (edited) You can drop a few more if you change the approach. $JOB/textures/party_18.`if($F %2, $F+1, $F)`.exr Edit: LOL nevermind that... unless you want it to hold a frame then skip one Edited July 3, 2014 by Serg 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.