Network-Render all Cameras
Automatically submit all cameras to a network render, rendering the correct frames, and save the output to the correct directories
Friday, October 26th, 2007
This MAXScript entry has not yet been completed…
(more…)
Automatically submit all cameras to a network render, rendering the correct frames, and save the output to the correct directories
This MAXScript entry has not yet been completed…
(more…)
A dockable toolbar providing controls to quickly render different sized images
Adds a new toolbar, allowing you to quickly change render size presets (PAL, PAL widescreen, HDTV, etc), and sizes ranging from full to 25%. Also, optionally render when clicking the preset buttons.

To add more presets to the list, you’ll have to edit the script. Don’t worry – it’s pretty easy! Just add items to the array here.
local presets =
#(
#("PAL", 768, 576, 1),
#("PAL (Widescreen)", 1024, 576, 1),
#("HDTV", 1920, 1080, 1)
-- feel free to add more here
)
Download renderSizePresets 0.75.ms, and place the file in your scripts/startup directory to have it start automatically each time you start 3dsmax.
Save and load render presets
This MAXScript entry has not yet been completed…
(more…)