Delete keys on mesh curves
Posted: Sun Mar 18, 2012 2:26 pm
Hi all,
Im working on something where I need to delete keys on a few channels of a Vector layer:
My question is: how do I delete keyframes on the curvature of all points in 'targetlayer'? I cant seem to understand how that curvatures stuff exactly works.
Im working on something where I need to delete keys on a few channels of a Vector layer:
Code: Select all
mesh = moho:LayerAsVector(targetlayer):Mesh()
for i = 0, mesh:CountPoints()-1 do
point = mesh:Point(i)
point.fAnimPos:DeleteKey(thisframe)
point.fWidth:DeleteKey(thisframe)
end