Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I have a scene that needs to be rendered very big. I made a script to automate this using multiple blowup renders. The blowup region renders fine when submitting to the backburner server, but only when using one batch. When submitting multiple it only uses the last set blowup region.
Can I add batch renders to the batch each using their unique blowup region in the camera view?
This is the part for my code where I create the blowup regions and add them to the bath:
--Set render type
--#view | #selected | #region | #crop | #blowUp | #boxselected | #regionselected | #cropselected | #normal | #selection | #regionCrop
setRenderType #blowUp
if renderSceneDialog.isOpen() do renderSceneDialog.update()
--Set blow region
box_blowup = (Box2 posVector[1] posVector[2] FullRecWidth FullRecHeight)
viewport.setblowuprect viewport.activeviewport box_blowup
--Create camera batch for blow region data
orthoCamBatch = batchRenderMgr.CreateView orthoCamObj
orthoNameCam = counter as string + "_" + orthoCamObj.name
orthoCamBatch.name = orthoNameCam
orthoCamBatch.outputFilename = maxFilePath + orthoNameCam + ".png"
orthoCamBatch.enabled = false
--batchRenderMgr.netRender = true
counter += 1
Any ideas how to do this?
Regards
Bert
Solved! Go to Solution.