[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

@ -31,7 +31,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
label="Dense SfMData",
description="SfMData file.",
value="",
invalidate=True,
),
desc.File(
name="imagesFolder",
@ -39,21 +38,18 @@ Many cameras are contributing to the low frequencies and only the best ones cont
description="Use images from a specific folder instead of those specified in the SfMData file.\n"
"Filename should be the image UID.",
value="",
invalidate=True,
),
desc.File(
name="normalsFolder",
label="Normals Folder",
description="Use normal maps from a specific folder to texture the mesh.\nFilename should be : uid_normalMap.",
value="",
invalidate=True,
),
desc.File(
name="inputMesh",
label="Mesh",
description="Optional input mesh to texture. By default, it will texture the result of the reconstruction.",
value="",
invalidate=True,
),
desc.File(
name="inputRefMesh",
@ -61,7 +57,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
description="Optional input mesh to compute height maps and normal maps.\n"
"If not provided, no additional map with geometric information will be generated.",
value="",
invalidate=True,
),
desc.ChoiceParam(
name="textureSide",
@ -70,7 +65,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
value=8192,
values=[1024, 2048, 4096, 8192, 16384],
exclusive=True,
invalidate=True,
),
desc.ChoiceParam(
name="downscale",
@ -79,7 +73,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
value=2,
values=[1, 2, 4, 8],
exclusive=True,
invalidate=True,
),
desc.ChoiceParam(
name="outputMeshFileType",
@ -88,7 +81,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
value="obj",
values=["obj", "gltf", "fbx", "stl"],
exclusive=True,
invalidate=True,
),
desc.GroupAttribute(
name="colorMapping",
@ -112,7 +104,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
value="exr",
values=["exr", "png", "tiff", "jpg"],
exclusive=True,
invalidate=True,
enabled=lambda node: node.colorMapping.enable.value,
),
],
@ -139,7 +130,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
value="Normal",
values=["Height", "Normal"],
exclusive=True,
invalidate=True,
enabled=lambda node: node.bumpMapping.enable.value,
),
desc.ChoiceParam(
@ -149,7 +139,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
value="exr",
values=["exr", "png", "tiff", "jpg"],
exclusive=True,
invalidate=True,
enabled=lambda node: node.bumpMapping.enable.value and node.bumpMapping.bumpType.value == "Normal",
),
desc.ChoiceParam(
@ -159,7 +148,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
value="exr",
values=["exr",],
exclusive=True,
invalidate=True,
enabled=lambda node: node.bumpMapping.enable.value and node.bumpMapping.bumpType.value == "Height",
),
],
@ -186,7 +174,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
value="exr",
values=["exr"],
exclusive=True,
invalidate=True,
enabled=lambda node: node.displacementMapping.enable.value,
),
],
@ -201,21 +188,18 @@ Many cameras are contributing to the low frequencies and only the best ones cont
value="Basic",
values=["Basic", "LSCM", "ABF"],
exclusive=True,
invalidate=True,
),
desc.BoolParam(
name="useUDIM",
label="Use UDIM",
description="Use UDIM UV mapping.",
value=True,
invalidate=True,
),
desc.BoolParam(
name="fillHoles",
label="Fill Holes",
description="Fill texture holes with plausible values.",
value=False,
invalidate=True,
),
desc.IntParam(
name="padding",
@ -223,7 +207,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
description="Texture edge padding size in pixels.",
value=5,
range=(0, 20, 1),
invalidate=True,
advanced=True,
),
desc.IntParam(
@ -232,7 +215,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
description="Width of frequency bands for multiband blending.",
value=4,
range=(0, 8, 2),
invalidate=True,
advanced=True,
),
desc.GroupAttribute(
@ -244,7 +226,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
label="High Freq",
description="High frequency band.",
value=1,
invalidate=True,
range=None,
),
desc.IntParam(
@ -252,7 +233,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
label="Mid-High Freq",
description="Mid-high frequency band.",
value=5,
invalidate=True,
range=None,
),
desc.IntParam(
@ -260,7 +240,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
label="Mid-Low Freq",
description="Mid-low frequency band.",
value=10,
invalidate=True,
range=None,
),
desc.IntParam(
@ -268,7 +247,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
label="Low Freq",
description="Low frequency band",
value=0,
invalidate=True,
range=None,
),
],
@ -280,7 +258,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
label="Use Score",
description="Use triangles scores (ie. reprojection area) for multi-band blending.",
value=True,
invalidate=True,
advanced=True,
),
desc.FloatParam(
@ -289,7 +266,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
description="Setting this parameter to 0.0 disables filtering based on threshold to relative best score.",
value=0.1,
range=(0.0, 1.0, 0.01),
invalidate=True,
advanced=True,
),
desc.FloatParam(
@ -298,7 +274,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
description="Setting this parameter to 0.0 disables angle hard threshold filtering.",
value=90.0,
range=(0.0, 180.0, 0.01),
invalidate=True,
advanced=True,
),
desc.ChoiceParam(
@ -308,7 +283,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
values=COLORSPACES,
value="sRGB",
exclusive=True,
invalidate=True,
advanced=True,
),
desc.ChoiceParam(
@ -318,21 +292,18 @@ Many cameras are contributing to the low frequencies and only the best ones cont
values=COLORSPACES,
value="AUTO",
exclusive=True,
invalidate=True,
),
desc.BoolParam(
name="correctEV",
label="Correct Exposure",
description="Uniformize images exposure values.",
value=True,
invalidate=True,
),
desc.BoolParam(
name="forceVisibleByAllVertices",
label="Force Visible By All Vertices",
description="Triangle visibility is based on the union of vertices visibility.",
value=False,
invalidate=True,
advanced=True,
),
desc.BoolParam(
@ -341,7 +312,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
description="Option to flip face normals.\n"
"It can be needed as it depends on the vertices order in triangles and the convention changes from one software to another.",
value=False,
invalidate=True,
advanced=True,
),
desc.ChoiceParam(
@ -351,7 +321,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
value="PullPush",
values=["Pull", "Push", "PullPush", "MeshItself"],
exclusive=True,
invalidate=True,
advanced=True,
),
desc.FloatParam(
@ -363,7 +332,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
" - 1: full density of the reconstruction).",
value=0.8,
range=(0.0, 1.0, 0.001),
invalidate=True,
advanced=True,
),
desc.ChoiceParam(
@ -373,7 +341,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
values=VERBOSE_LEVEL,
value="info",
exclusive=True,
invalidate=False,
),
]
@ -383,14 +350,12 @@ Many cameras are contributing to the low frequencies and only the best ones cont
label="Folder",
description="Folder for output mesh: OBJ, material and texture files.",
value=desc.Node.internalFolder,
invalidate=False,
),
desc.File(
name="outputMesh",
label="Mesh",
description="Output mesh file.",
value=desc.Node.internalFolder + "texturedMesh.{outputMeshFileTypeValue}",
invalidate=False,
group="",
),
desc.File(
@ -399,7 +364,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
label="Material",
description="Output material file.",
value=desc.Node.internalFolder + "texturedMesh.mtl",
invalidate=False,
group="",
),
desc.File(
@ -407,7 +371,6 @@ Many cameras are contributing to the low frequencies and only the best ones cont
label="Textures",
description="Output texture files.",
value=lambda attr: desc.Node.internalFolder + "texture_*." + attr.node.colorMapping.colorMappingFileType.value if attr.node.colorMapping.enable.value else "",
invalidate=False,
group="",
),
]