talsit Posted November 25, 2002 Share Posted November 25, 2002 I need to copy what another channel's value, but 14 frames ago. I know how to repeat, and I know how to get another channel's value, but not how to do both. Also, how to repeat with offset, that is, i want to repeat what has been done 14 frames ago, but the 1st value of the repeat should be the same as the last value of the repeat source interval. Makes sense? Umm.. ok, thanks!! Quote Link to comment Share on other sites More sharing options...
thekenny Posted November 25, 2002 Share Posted November 25, 2002 look at the chf expression. exhelp chf float chf (string channel, float frame) Will evaluate the channel at the frame specified. chf("/obj/geo1/tx" ,$F-14) -k Quote Link to comment Share on other sites More sharing options...
talsit Posted November 25, 2002 Author Share Posted November 25, 2002 Ok, great, that works, sorta... It does about 10-12 "cycles" then it stops. I imagine that this has to do with the recursion level, which, needless to say, is not infinite... I'm gonna try to do a coder's hack... lets see if this works as i expect Quote Link to comment Share on other sites More sharing options...
talsit Posted November 26, 2002 Author Share Posted November 26, 2002 I love being a coder!! chf ($CH ,956 + ($F-955)%12) + (chf ($CH, 966) - chf ($CH, 956)) * floor (($F-955) / 12) That's my hack! Works perfectly, mind you! 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.