fix multiscene render

0.5.8

- fix: skipping when rendering multiscene
main
Pullusb 2021-10-18 12:09:52 +02:00
parent 20ab99889d
commit 51a681b880
4 changed files with 31 additions and 19 deletions

View File

@ -14,6 +14,10 @@ Activate / deactivate layer opaticty according to prefix
Activate / deactivate all masks using MA layers
-->
0.5.8
- fix: skipping when rendering multiscene
0.5.7
- added: timeout on scene plit and autocrop border to avoid freezing blender

View File

@ -20,9 +20,13 @@ class GPEXP_OT_render_all_scenes(bpy.types.Operator):
continue
if not scn.use_nodes:
continue
if not [n for n in scn.node_tree.nodes if n.type == 'OUTPUT_FILE' and n.mute]:
# skip if no fileout
print(f'\n -!-> Skip {scn.name}, No output file, or all muted')
outfiles = [n for n in scn.node_tree.nodes if n.type == 'OUTPUT_FILE']
if not outfiles:
print(f'\n -!-> Skip {scn.name}, No output files')
continue
if all(x.mute for x in outfiles):
print(f'\n -!-> Skip {scn.name}, All output file are muted')
continue
print(f'\n --> Rendering {scn.name}')

View File

@ -2,7 +2,7 @@ bl_info = {
"name": "GP Render",
"description": "Organise export of gp layers through compositor output",
"author": "Samuel Bernou",
"version": (0, 5, 7),
"version": (0, 5, 8),
"blender": (2, 93, 0),
"location": "View3D",
"warning": "",

8
fn.py
View File

@ -162,7 +162,9 @@ def new_scene_from(name, src_scn=None, regen=True, crop=True, link_cam=True, lin
def get_render_scene():
'''Get / Create a scene named Render'''
render_scn = bpy.data.scenes.get('Render')
if not render_scn:
if render_scn:
return render_scn
current = bpy.context.scene
render_scn = bpy.data.scenes.new('Render')
## copy original settings over to new scene
@ -176,9 +178,11 @@ def get_render_scene():
if ob.type in ('CAMERA', 'LIGHT'):
render_scn.collection.objects.link(ob)
render_scn.use_nodes = True
# TODO Clear node tree (initial view layer stuff)
# set adapted render settings (no AA)
set_settings(render_scn)
render_scn.use_nodes = True
return render_scn
def get_view_layer(name, scene=None):