Hello, I hope someone can assist me with this head scratcher. I am using setKeyframe to add an array of keys onto a newly created motionpath. As of now, the keyframes are created at the correct times, however it is adding an extra key at the frame that the slider is on in the timeline. For example, if I am on frame 73 in the timeline, then I run the script, it will set a key at 73 with a value of 0, even though frame 73 is not in the array.
Here is a snippet of the code:
setKeyframe -attribute "uValue" -time $myTimes[$i] -v $value -itt $inTangentType[$i] -ott $outTangentType[$i] $motionPathName;
Thanks for any help you can give me with this!