[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

@ -19,7 +19,6 @@ for now, the parameters are difficult to control and vary a lot from one dataset
label="Mesh",
description="Input mesh in the OBJ file format.",
value="",
invalidate=True,
),
desc.IntParam(
name="denoisingIterations",
@ -27,7 +26,6 @@ for now, the parameters are difficult to control and vary a lot from one dataset
description="Number of denoising iterations.",
value=5,
range=(0, 30, 1),
invalidate=True,
),
desc.FloatParam(
name="meshUpdateClosenessWeight",
@ -35,7 +33,6 @@ for now, the parameters are difficult to control and vary a lot from one dataset
description="Closeness weight for mesh update. Must be positive.",
value=0.001,
range=(0.0, 0.1, 0.001),
invalidate=True,
),
desc.FloatParam(
name="lambda",
@ -43,7 +40,6 @@ for now, the parameters are difficult to control and vary a lot from one dataset
description="Regularization weight.",
value=2.0,
range=(0.0, 10.0, 0.01),
invalidate=True,
),
desc.FloatParam(
name="eta",
@ -53,7 +49,6 @@ for now, the parameters are difficult to control and vary a lot from one dataset
"Must be positive.",
value=1.5,
range=(0.0, 20.0, 0.01),
invalidate=True,
),
desc.FloatParam(
name="mu",
@ -61,7 +56,6 @@ for now, the parameters are difficult to control and vary a lot from one dataset
description="Gaussian standard deviation for guidance weight.",
value=1.5,
range=(0.0, 10.0, 0.01),
invalidate=True,
),
desc.FloatParam(
name="nu",
@ -69,7 +63,6 @@ for now, the parameters are difficult to control and vary a lot from one dataset
description="Gaussian standard deviation for signal weight.",
value=0.3,
range=(0.0, 5.0, 0.01),
invalidate=True,
),
desc.ChoiceParam(
name="meshUpdateMethod",
@ -80,7 +73,6 @@ for now, the parameters are difficult to control and vary a lot from one dataset
value=0,
values=[0, 1],
exclusive=True,
invalidate=True,
),
desc.ChoiceParam(
name="verboseLevel",
@ -89,7 +81,6 @@ for now, the parameters are difficult to control and vary a lot from one dataset
values=VERBOSE_LEVEL,
value="info",
exclusive=True,
invalidate=False,
),
]
@ -99,6 +90,5 @@ for now, the parameters are difficult to control and vary a lot from one dataset
label="Output",
description="Output mesh in the OBJ file format.",
value=desc.Node.internalFolder + "mesh.obj",
invalidate=False,
),
]