[nodes] ExportAnimatedCamera: export undistort UV maps

This commit is contained in:
jouetp 2021-01-18 15:22:42 +01:00 committed by Fabien Castan
parent 340ab2ec51
commit 743fdce1a4

View file

@ -27,11 +27,18 @@ Based on the input image filenames, it will recognize the input video sequence t
value='',
uid=[0],
),
desc.BoolParam(
name='exportUVMaps',
label='Export UV Maps',
description='Export UV Maps, absolutes values (x,y) of distortion are encoding in UV channels.',
value=True,
uid=[0],
),
desc.BoolParam(
name='exportUndistortedImages',
label='Export Undistorted Images',
description='Export Undistorted Images.',
value=True,
value=False,
uid=[0],
),
desc.ChoiceParam(
@ -42,6 +49,7 @@ Based on the input image filenames, it will recognize the input video sequence t
values=['jpg', 'png', 'tif', 'exr'],
exclusive=True,
uid=[0],
enabled= lambda node: node.exportUndistortedImages.value == 1,
),
desc.ChoiceParam(
name='verboseLevel',