Add keyframe using mel


#1

Hi everyone !

I’m not really into coding, but hoping someone could help me modify this script

keyframe -e -iub true -r -o over -vc -14.798436 -t 1070 bend_joint ;

is it possible to not include the number frame (1070) and just be able to keyframe on current frame/position?

Thanks!


#2

Does thus work:

keyframe -e -iub true -r -o over -vc -14.798436 -t `currentTime -q` bend_joint ;

?


#3

wow! It works! Thanks a lot mate!