Notifications
Clear all

[Closed] Render sequence of specified region in Max ?

As the topic said, I can’t find any flag in 3dsmaxcmd of doing that. Is it possible to do that ?

C.

3 Replies

Sure you can render region using this

 render fromframe:0 toframe:100 rendertype:#region region:#(10,10,110,110)

This line creates a render from frame 0 to 100 rendering just the top left rect of width and height 100 offset by 10 pixels in x and y axes.

Hope this helps
Mobeen

Ooosh, I don’t know about the “render” command in maxscript before. Thanks a lot.

C.

Then how can it be done with backburner ?

My line is

render cameras:myCam frame:#current renderType:#region region:#(0,0,200,200) outputfile:"d:/myFile.tga" vfb:true

So I tried to save the line into a .ms file, check the “Net Render” and uncheck “Save File” in the render scene dialog, set the frame range to render, press “Render”, then under the “Advanced” button I specified the maxscript file as “pre-render maxscript”.

The problem is that it always output to the file “myFile.tga”. It didn’t insert the current frame number to it. Actually I’m not sure if this is a correct way to go. Pls advice.:sad:

C.