7ofDiamonds Posted February 13, 2015 Share Posted February 13, 2015 I'm trying to set keyframes with if statements, but I want these keyframes to have interpolation. For example: When $F = 10, set rotation to 50 When $F = 20, set rotation to 100 With the regular if statement, the rotation would jump from 50 to 100: if ($F ==10, 50 ($F == 20, 100), 0) Is there a way to set the keyframes to move from 50 to 100 as if a real key frame was created at those to points? Quote Link to comment Share on other sites More sharing options...
Ryan Posted February 14, 2015 Share Posted February 14, 2015 Try using fit instead of if. fit($F, 10, 20, 50, 100) 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.