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
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.