When running the python script below in blender itself, it runs as expected: renders only the bottom right corner.
What I want is to send this to a node on the render farm (just to test that it’ll render only that section), but the farm renders the whole image. What can I do?
(this is using the default cube scene)
import bpy
import os
render = bpy.context.scene.render
render.use_border = True
render.use_crop_to_border = False
render.border_min_x = 960/1920
render.border_min_y = 0/1080
render.border_max_x = 1920/1920
render.border_max_y = 540/1080
bpy.ops.render.netclientsendframe()
#bpy.ops.render.render
bpy.ops.render.render
used on local client
bpy.ops.render.netclientsendframe()
used for net render
Or if anyone has another solution to render a single image on multiple computers let me know. I’ve tried Loki Render, but 2.77+ doesn’t support it anymore, just renders black.