[Node] Texturing: Replace processcolorspaceName with workingcolorSpace and add outputColorSpace

This commit is contained in:
demoulinv 2023-03-14 14:59:15 +01:00
parent eb6d65f938
commit 008d901a13

View file

@ -254,11 +254,21 @@ Many cameras are contributing to the low frequencies and only the best ones cont
advanced=True,
),
desc.ChoiceParam(
name='processColorspace',
label='Process Colorspace',
description="Colorspace for the texturing internal computation (does not impact the output file colorspace).",
name='workingColorSpace',
label='Working Color Space',
description="Color space for the texturing internal computation (does not impact the output file color space).",
value='sRGB',
values=('sRGB', 'LAB', 'XYZ'),
values=('sRGB', 'Linear', 'ACES2065-1', 'ACEScg'),
exclusive=True,
uid=[0],
advanced=True,
),
desc.ChoiceParam(
name='outputColorSpace',
label='Output Color Space',
description="Color space for the output file.",
value='AUTO',
values=('sRGB', 'Linear', 'ACES2065-1', 'ACEScg', 'AUTO'),
exclusive=True,
uid=[0],
advanced=True,