Not sure but could it be that your render camera's clipping plane is too low so it's snipping off your scene? That's the only thing that came to mind. Hope you guys sort it out.Originally posted by Lokjutus
...... we made some changes to some objects after that, moving them and creating some new lights, etc. Those objects and lights that we change don't show in batch rendered images at all!! For example, if we moved an object just a few units to the right, that object didnt show in batch render any more..same with lights....
string $filename = "render"; string $cameraName = "persp"; int $startFrame = 1; int $endFrame = 24; string $directory = (`workspace -q -rd` + "images/"); for ($i = $startFrame; $i <= ($endFrame - $startFrame); $i++) { currentTime $i; render -x `getAttr defaultResolution.width` -y `getAttr defaultResolution.height` $cameraName; string $concatFilename = $directory + $filename + "." + $i; renderWindowSaveImageCallback ("renderView", $concatFilename, `getAttr defaultRenderGlobals.imageFormat`); print ("Saved " + $concatFilename + "\n"); } print ("Completed rendering of " + ($endFrame - $startFrame) + " frames.\n");