mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-31 07:18:25 +02:00
[nodes] Remove invalidate=True
from descriptions
This commit is contained in:
parent
07b65499ce
commit
41a1b47c43
81 changed files with 8 additions and 1076 deletions
|
@ -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,
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue