[panorama] Preview file name is now a parameter

This commit is contained in:
Fabien Servant 2023-03-28 16:13:32 +02:00
parent 42e2b8ae25
commit f51919a8f3

View file

@ -40,13 +40,13 @@ Post process the panorama.
uid=[0]
),
desc.ChoiceParam(
name='outputColorSpace',
label='Output Color Space',
description='Allows you to choose the color space of the output image.',
value='Linear',
values=['sRGB', 'rec709', 'Linear', 'ACES2065-1', 'ACEScg'],
exclusive=True,
uid=[0],
name='outputColorSpace',
label='Output Color Space',
description='Allows you to choose the color space of the output image.',
value='Linear',
values=['sRGB', 'rec709', 'Linear', 'ACES2065-1', 'ACEScg'],
exclusive=True,
uid=[0],
),
desc.ChoiceParam(
name='verboseLevel',
@ -68,4 +68,12 @@ Post process the panorama.
value=desc.Node.internalFolder + 'panorama.exr',
uid=[],
),
desc.File(
name='outputPanoramaPreview',
label='Output Panorama preview',
description='',
semantic='image',
value=desc.Node.internalFolder + 'panoramaPreview.jpg',
uid=[],
),
]