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.

link|improve this question
feedback

3 Answers

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.

folder = "c:\\tmp\\renders"
dir = dotNetClass "System.IO.Directory"
files = dir.GetFiles(folder)    
file = folder + "\\render" + files.count as String + ".bmp" 
render outputfile:file
link|improve this answer
Thanks for the reply, I should mention that I am very new to maxscript and programming. I have done the maxscript tutorials but I can't say I understand all of what I am doing. – Donovan Oct 29 '10 at 8:26
I am having trouble getting this to work. I have typed all the info in and changed the folder = to my own work path. under file = folder + i have changed that to be the name of my render and instead of ".bmp" I have chosen ".tga". When I evaluate the script, nothing happens. no errors no renders, absolutely nothing. the full script I have written out is: – Donovan Nov 1 '10 at 11:17
folder = "d:\\Work\\Experiment\\RenderScript\\renderoutput" – Donovan Nov 1 '10 at 11:17
dir = dotNetClass "System.IO.Directory" – Donovan Nov 1 '10 at 11:18
files = dir.GetFiles(folder) – Donovan Nov 1 '10 at 11:18
show 1 more comment
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.

--Here you'd get the start frame from the UI
    startframe = 0

--Here you'd get the end frame from the UI
    endframe = 10

--temp variable to hold our start frame number.
    tempframe = startframe

--variable to hold our desired filename
    filename = "Filename_"
for i = startframe to endframe do
(
 tempframe +=1
 print "Framenumber is now:"
 print tempframe as string
 print "Filename at this frame would be:"
 format "filename% \n" (formattedPrint tempframe format:".4i" + ".ext") 
)

the result from running this can be seen in the script listener.

link|improve this answer
feedback

file = render()

then you save the file with what ever name, and where ever you want.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.