Forum Coordinators: RedPhantom
Poser - OFFICIAL F.A.Q (Last Updated: 2024 Nov 13 11:02 am)
Not within the standard gui, but I think this should be able to do with Python. I don't know if Python can detect the keyframes, but the rest should work.
A ship in port is safe;
but that is not what ships are built for.
Sail out to sea and do new things.
-"Amazing
Grace" Hopper
Avatar image of me done by Chidori.
I have something rudimentary in place - having used the existing python script 'PythonposerscriptsRenderControlexport.py' as a blueprint ...
BUT: Multiframe Export doesn't seem to function from script:
When I call
myExportObject.Export('obj', 'File Format Wavefront', '/Keyframes/Keyframe.obj', exportOptions)
with
exportOptions[poser.kExOptCodeMULTIFRAME] = 0
then the current figure is output
When I call the same method with
exportOptions[poser.kExOptCodeMULTIFRAME] = 1
then NOTHING happens ...
My script IS actually cruising the keyframes of the current animation, but the Multiframe Export method is not working properly ... A known bug ?
New enlightenment: I don't need 'Multiframe Export' in this case; the 'Export' function exports the current keyframe object automatically !
So I've set
And all keyframe models are output automatically !
This site uses cookies to deliver the best experience. Our own cookies make user accounts and other features possible. Third-party cookies are used to display relevant ads and to analyze how Renderosity is used. By using our site, you acknowledge that you have read and understood our Terms of Service, including our Cookie Policy and our Privacy Policy.
Attached Link: Verlsnake's Allerlei
What I would like to do is: - Export a model for every nth frame in an animationI know how to export models for every frame in an animation - via "Export Wavefront OBJ - Multi frame export - Frame Range".
But unfortunately, there's no option to tell Poser to export only every nth frame ...
Is there any unofficial way to export a model
in an animation ?