Notifications
Clear all
[Closed] Animation Help Please
Jun 01, 2006 12:11 pm
hi
Does anybody know a way of getting max to render an animation and on each frame print what frame it is rendering in the listner? Ideally i would like to set up an animation as normal throught the render scene dialog and get max script to print what frame it is rendering at that time.
regards
Nebille
2 Replies
Jun 01, 2006 12:11 pm
Hi nebille,
(
callbacks.removescripts id:#printFrames
txt = "print currenttime
"
callbacks.addscript #preRenderFrame txt id:#printFrames
txt = "callbacks.removescripts id:#printFrames"
callbacks.addscript #postRender txt id:#printFrames
)
enables printing of the rendered frames and disables it after last frame.
why do you need this?
Georg
Jun 01, 2006 12:11 pm
thanks for the script
I am writing a animated vray proxy script and at the mo it depends on the scenes time line changing according to the what frame max is rendering
does this make sense?