[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

@ -24,7 +24,6 @@ class LidarDecimating(desc.AVCommandLineNode):
label="Input JSON",
description="Input JSON file with description of inputs.",
value="",
invalidate=True,
),
desc.FloatParam(
name="errorLimit",
@ -32,7 +31,6 @@ class LidarDecimating(desc.AVCommandLineNode):
description="Maximal distance (in meters) allowed.",
value=0.001,
range=(0.0, 1.0, 0.001),
invalidate=True,
),
desc.ChoiceParam(
name="verboseLevel",
@ -41,7 +39,6 @@ class LidarDecimating(desc.AVCommandLineNode):
values=VERBOSE_LEVEL,
value="info",
exclusive=True,
invalidate=False,
),
]
@ -51,13 +48,11 @@ class LidarDecimating(desc.AVCommandLineNode):
label="Sub-Meshes Directory",
description="Output directory for sub-meshes.",
value=desc.Node.internalFolder,
invalidate=False,
),
desc.File(
name="outputJson",
label="Scene Description",
description="Output scene description.",
value=desc.Node.internalFolder + "scene.json",
invalidate=False,
),
]