[nodes] Remove invalidate=True from descriptions

This commit is contained in:
Candice Bentéjac 2024-09-06 17:30:22 +02:00
parent 07b65499ce
commit 41a1b47c43
81 changed files with 8 additions and 1076 deletions

View file

@ -17,14 +17,12 @@ class LightingEstimation(desc.AVCommandLineNode):
label="Input SfMData",
description="Input SfMData file.",
value="",
invalidate=True,
),
desc.File(
name="depthMapsFilterFolder",
label="Filtered Depth Maps Folder",
description="Input filtered depth maps folder.",
value="",
invalidate=True,
),
desc.File(
name="imagesFolder",
@ -32,7 +30,6 @@ class LightingEstimation(desc.AVCommandLineNode):
description="Use images from a specific folder instead of those specify in the SfMData file.\n"
"Filename should be the image UID.",
value="",
invalidate=True,
),
desc.ChoiceParam(
name="lightingEstimationMode",
@ -41,7 +38,6 @@ class LightingEstimation(desc.AVCommandLineNode):
value="global",
values=["global", "per_image"],
exclusive=True,
invalidate=True,
advanced=True,
),
desc.ChoiceParam(
@ -51,7 +47,6 @@ class LightingEstimation(desc.AVCommandLineNode):
value="RGB",
values=["RGB", "Luminance"],
exclusive=True,
invalidate=True,
advanced=True,
),
desc.ChoiceParam(
@ -61,7 +56,6 @@ class LightingEstimation(desc.AVCommandLineNode):
value="constant",
values=["constant", "picture", "median_filter", "blur_filter"],
exclusive=True,
invalidate=True,
advanced=True,
),
desc.IntParam(
@ -70,7 +64,6 @@ class LightingEstimation(desc.AVCommandLineNode):
description="Albedo filter size for estimation method using filter.",
value=3,
range=(0, 100, 1),
invalidate=True,
advanced=True,
),
desc.ChoiceParam(
@ -80,7 +73,6 @@ class LightingEstimation(desc.AVCommandLineNode):
values=VERBOSE_LEVEL,
value="info",
exclusive=True,
invalidate=False,
),
]
@ -90,6 +82,5 @@ class LightingEstimation(desc.AVCommandLineNode):
label="Folder",
description="Folder for output lighting vector files.",
value=desc.Node.internalFolder,
invalidate=False,
),
]