THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 24/06/2011 at 01:03, xxxxxxxx wrote:
I want to export a meshsequence of an animation. If I set the documenttime to a specific frame e.g. frame 5 and export the document, then cinema always export the mesh of frame 0.
Here ars some code snippets:
minFrame = 0
maxFrame = 10
while minFrame <= maxFrame :
doc.SetTime(c4d.BaseTime(minFrame, fps))
filepathSuffix = filepath + "_" + str(minFrame) + "." + suffix
c4d.documents.SaveDocument(doc, filepathSuffix, c4d.SAVEDOCUMENTFLAGS_0, format)
minFrame = minFrame + 1
How can I export the mesh of the frame, the playhead is?