-alicelg-render
: Start the rendering of a single quilt.-alicelg-render-anim
: Start the rendering of a quilt animation.--
. An example, which opens the file 'my_lg_hologram.blend' and starts rendering a single quilt looks like that:blender -b my_lg_hologram.blend -- -alicelg-render
-o
or --render-output
<path>
: Set the render path and file name. Automatically disables the "Add Metadata" option.-s
or --frame-start
<frame>
: Set start to frame <frame>
, supports +/- for relative frames too.-e
or --frame-end
<frame>
: Set end to frame <frame>
, supports +/- for relative frames too.-j
or --frame-jump
<frame>
: Set number of frames to step forward after each rendered frame-f
or --render-frame
: Specify a single frame to render--
to notify Blender that the arguments are meant for the add-on. An example call which would start Blender in background mode, load the 'my_lg_hologram.blend' file, and render a quilt animation from frame 10 to 24 with the base file name quilt_anim
would look like this:blender -b my_lg_hologram.blend -- -alicelg-render-anim -o /tmp/quilt_anim.png -s 10 -e 24
blender -b my_lg_hologram.blend -- -alicelg-render -o /tmp/quilt.png -f 16