// BatchRender sample script

// This line is a comment.

// Explanation of the upper buttons. (from left side)

// Scene load
// Camera selection
// Render settings
// Render with a file name

// Show and change the render settings in current cursor position
// Degub for spelling check
// Batch execute

// Using the "Show and change" for the render settings is recommended.

// The space is permitted in the command and number.
// The space is NOT permitted in the gap of file (and camera) name and parentheses.

// The explanation of the command is as follows:

scene (C:\My Documents\sample.scn)
// Load a scene file (full-path).

camera (camera1)
// Change camera view (full-path including hierarchy).

size ( 640 , 480 )
// render image size.

frames(0,0)
// start frame and end frame for render.

colorbits(24)
// 24bits or 32bits image for Targa.

field(off)
// Field rendering. on/off

blur(off)
// Motion blur. on/off

blur_length(1.000000)
// Blur length.

blur_frames(6)
// Blur frames.

framerate(30)
// Frame rate for render.

pixelaspect(1.000000)
// Pixel aspect rate.

avi_fcc(DIB )
avi_datarate(300)
avi_keyframe(9999)
avi_quality(0)
// AVI compress settings

quality(75)
// Image quality for Jpeg.

compress(off)
// Compress on/off for Targa.

bg_on(255,255,255)
// Background is painted with RGB color.

bg_off()
// Background is not painted.

render(C:\My Documents\test.jpg)
// render execute with a file name.

stop
// Batch process stop.

All the commands are NOT indispensable.
It is rendered with default settings even if it is only a render command.

The render setting is held until the end of batch.
Namely, you are sufficient to write only a necessary item.

ex.)
settings ... render ... camera ... render ... camera ... render
