mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-22 02:11:19 +00:00
Set the fcurve interpolation to linear.
Since qf does linear interpolation of verts, this seems to be reasonable. Certaintly better than the rose-thorns I got because I haven't figured out how to kick the auto-clamp.
This commit is contained in:
parent
274848b720
commit
ff05074e70
1 changed files with 1 additions and 0 deletions
|
@ -163,6 +163,7 @@ def set_keys(act, data):
|
|||
fc.keyframe_points.add(len(co))
|
||||
for i in range(len(co)):
|
||||
fc.keyframe_points[i].co = co[i]
|
||||
fc.keyframe_points[i].interpolation = 'LINEAR'
|
||||
|
||||
def build_actions(mdl):
|
||||
sk = mdl.mesh.shape_keys
|
||||
|
|
Loading…
Reference in a new issue