|
You can do it with Python on the script editor. Edit the "setup" below following the instructions, the hardest part is to figure out the point number. #setup curvename = "Ellipse1" #change to name of the curve pointNumber = 3 #correspondence point number (starts on 0) sourceordestination = 1 #sourcecurve is 0, destination curve is 1 time = 40 #time of the keyframe you want to remove #endofsetup rotoNode = nuke.selectedNode() rotoCurve = rotoNode['curves'] cp = rotoCurve.getCorrespondencePoints(curvename) animationcurve = cp.getAnimCurve(pointNumber, sourceordestination) animationcurve.removeKey(time) #also possible to remove all the keyframes with #animationcurve.removeAllKeys() rotoCurve.changed() #updates the UI I'm afraid this isn't currently possible. It's logged as bug 18300. -- Magno Borgo www.boundaryvfx.com www.borgo.tv Brasil:Curitiba:GMT= -3 |
_______________________________________________ Nuke-users mailing list [email protected], http://forums.thefoundry.co.uk/ http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users
