ScriptSpot

Script

RenDir

By allanmckay · Credited author: Allan McKay · 2009-10-13

Version
3dsmax 2009
Date updated
2009-09-13
Votes
12
Download
Download
Description

What this will do is load up every single max file in the directory of your current scene file, and render each of them. Useful if you have a bunch of max files you want to render overnight on a single PC. You can just copy all those files into any directory, and set them all up with the render settings you want.
And then run the script, it will read all the max files in the present dir, and load them one at a time, and render each out.

Tags: render, Automate

Comments (1)

makco · 2010-02-15

Awesome little script, Thanks

I did a little edit to single frames to make a small library of a directory:

_MPath = getfiles (maxfilepath + "*.max") -- Stores maxfiles into array

for i = 1 to _MPath.count do
(
renname = _Mpath[i] as string + ".jpg"
loadmaxfile _MPATH[i] -- Loading max file from Array
render outputfile:renname
print ("Rendered" + " " + _MPath[i]) as string

)