While I am modeling I like to render a frame to show the progress as I am going along. I would like to program the renderer to save the render as a render output and add an incremental number to the end of it. So I would have a number of renders at the end just like a render sequence for an animation but with the frames I decide to make. The purpose of this is to automate the process of creating a making of.
|
feedback
|
|
If you save the files to a new empty folder then each time you save the file you can append an integer to the file name that corresponds to the number of files in the directory.
| |||||||||||
feedback
|
|
Here's a loop to increment your filename names at each frame. use the last line's result as your filename. One problem that you will encounter if you just "add numbers" to your filename is that other applications (including ram player) dont recognize them as a sequence. with the solution below you add it properly, with 0001 - 0002 etc. change the line ".4i" if you want more 0's in your output.
the result from running this can be seen in the script listener. | ||||
|
feedback
|
|
file = render() then you save the file with what ever name, and where ever you want. | |||
|
feedback
|