change default passes from PIZ to DWAB and tech passes fom PIZ to ZIP
This commit is contained in:
parent
96875b43c5
commit
ffd0fcf90c
2
fn.py
2
fn.py
@ -221,7 +221,7 @@ def connect_to_file_output(node_list, file_out=None, base_path='', excludes=None
|
||||
tech_file_format['color_depth'] = '32'
|
||||
## Enforce a lossless format if provided is not
|
||||
if (codec := tech_file_format.get('exr_codec')) and codec not in ['ZIP','PIZ','RLE','ZIPS']:
|
||||
tech_file_format['exr_codec'] = 'PIZ'
|
||||
tech_file_format['exr_codec'] = 'ZIP'
|
||||
|
||||
for node in node_list:
|
||||
exclusions = excludes.get(node.name) or []
|
||||
|
@ -4,6 +4,7 @@ from . import (
|
||||
outputs_search_and_replace,
|
||||
visibility_conflicts,
|
||||
simplify_conflicts,
|
||||
# conform_collection_hierarchy,
|
||||
scene_checker,
|
||||
)
|
||||
|
||||
@ -13,6 +14,7 @@ mods = (
|
||||
outputs_search_and_replace,
|
||||
visibility_conflicts,
|
||||
simplify_conflicts,
|
||||
# conform_collection_hierarchy,
|
||||
scene_checker,
|
||||
)
|
||||
|
||||
|
@ -212,7 +212,7 @@ class RT_OT_create_output_layers(bpy.types.Operator):
|
||||
|
||||
exr_codec : EnumProperty(
|
||||
name='Codec',
|
||||
default='PIZ',
|
||||
default='DWAB',
|
||||
description='Codec settings for OpenEXR',
|
||||
items=(
|
||||
('PIZ', 'PIZ (lossless)', ''),
|
||||
|
Loading…
x
Reference in New Issue
Block a user