mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
Export animation range selected with start/end playback range in Timeline Editor
This commit is contained in:
parent
302a462c32
commit
90a707f7f9
1 changed files with 1 additions and 1 deletions
|
@ -300,7 +300,7 @@ def export_mdl(operator, context, filepath):
|
|||
make_skin(operator, mdl, mesh)
|
||||
if not mdl.frames:
|
||||
curframe = context.scene.frame_current
|
||||
for fno in range(1, curframe + 1):
|
||||
for fno in range(context.scene.frame_start, context.scene.frame_end + 1):
|
||||
context.scene.frame_set(fno)
|
||||
mesh = obj.to_mesh(context.scene, True, 'PREVIEW') #wysiwyg?
|
||||
if mdl.obj.qfmdl.xform:
|
||||
|
|
Loading…
Reference in a new issue