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'
|
tech_file_format['color_depth'] = '32'
|
||||||
## Enforce a lossless format if provided is not
|
## Enforce a lossless format if provided is not
|
||||||
if (codec := tech_file_format.get('exr_codec')) and codec not in ['ZIP','PIZ','RLE','ZIPS']:
|
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:
|
for node in node_list:
|
||||||
exclusions = excludes.get(node.name) or []
|
exclusions = excludes.get(node.name) or []
|
||||||
|
@ -4,6 +4,7 @@ from . import (
|
|||||||
outputs_search_and_replace,
|
outputs_search_and_replace,
|
||||||
visibility_conflicts,
|
visibility_conflicts,
|
||||||
simplify_conflicts,
|
simplify_conflicts,
|
||||||
|
# conform_collection_hierarchy,
|
||||||
scene_checker,
|
scene_checker,
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -13,6 +14,7 @@ mods = (
|
|||||||
outputs_search_and_replace,
|
outputs_search_and_replace,
|
||||||
visibility_conflicts,
|
visibility_conflicts,
|
||||||
simplify_conflicts,
|
simplify_conflicts,
|
||||||
|
# conform_collection_hierarchy,
|
||||||
scene_checker,
|
scene_checker,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -212,7 +212,7 @@ class RT_OT_create_output_layers(bpy.types.Operator):
|
|||||||
|
|
||||||
exr_codec : EnumProperty(
|
exr_codec : EnumProperty(
|
||||||
name='Codec',
|
name='Codec',
|
||||||
default='PIZ',
|
default='DWAB',
|
||||||
description='Codec settings for OpenEXR',
|
description='Codec settings for OpenEXR',
|
||||||
items=(
|
items=(
|
||||||
('PIZ', 'PIZ (lossless)', ''),
|
('PIZ', 'PIZ (lossless)', ''),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user