[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

@ -16,14 +16,12 @@ Evaluate a depth map from a normals map (currently in development)
label="Normal Maps Folder",
description="Path to the folder containing the normal maps and the masks.",
value="",
invalidate=True,
),
desc.File(
name="sfmDataFile",
label="SfMData",
description="Input SfMData file.",
value="",
invalidate=True,
),
desc.IntParam(
name="downscale",
@ -32,7 +30,6 @@ Evaluate a depth map from a normals map (currently in development)
value=1,
range=(1, 10, 1),
advanced=True,
invalidate=True,
),
desc.ChoiceParam(
name="verboseLevel",
@ -41,7 +38,6 @@ Evaluate a depth map from a normals map (currently in development)
values=VERBOSE_LEVEL,
value="info",
exclusive=True,
invalidate=False,
),
]
@ -52,7 +48,6 @@ Evaluate a depth map from a normals map (currently in development)
description="Generated depth in the camera coordinate system.",
semantic="image",
value=desc.Node.internalFolder + "<POSE_ID>_depthMap.exr",
invalidate=False,
group="", # do not export on the command line
)
]