mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-28 09:47:20 +02:00
[nodes] Fix labels and descriptions for some nodes
This commit is contained in:
parent
54c8bfefa8
commit
8ee7b50204
3 changed files with 14 additions and 15 deletions
|
@ -20,14 +20,14 @@ class ExportMaya(desc.Node):
|
|||
),
|
||||
desc.File(
|
||||
name="alembic",
|
||||
label="Alembic file",
|
||||
label="Alembic File",
|
||||
description="Input alembic file.",
|
||||
value="",
|
||||
),
|
||||
desc.File(
|
||||
name="mesh",
|
||||
label="Input Mesh",
|
||||
description="Input Mesh file.",
|
||||
description="Input mesh file.",
|
||||
value="",
|
||||
),
|
||||
desc.File(
|
||||
|
@ -38,8 +38,8 @@ class ExportMaya(desc.Node):
|
|||
),
|
||||
desc.BoolParam(
|
||||
name="generateMaya",
|
||||
label="generate Maya scene",
|
||||
description="Do we generate the scene or only export a mel script.",
|
||||
label="Generate Maya Scene",
|
||||
description="Select to generate the Maya scene in addition to the export of the mel script.",
|
||||
value=True,
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
|
@ -54,14 +54,14 @@ class ExportMaya(desc.Node):
|
|||
outputs = [
|
||||
desc.File(
|
||||
name="meloutput",
|
||||
label="Mel script",
|
||||
description="Generated mel script",
|
||||
label="Mel Script",
|
||||
description="Generated mel script.",
|
||||
value=desc.Node.internalFolder + "import.mel",
|
||||
),
|
||||
desc.File(
|
||||
name="mayaoutput",
|
||||
label="Maya scene",
|
||||
description="Generated Maya scene",
|
||||
label="Maya Scene",
|
||||
description="Generated Maya scene.",
|
||||
value=desc.Node.internalFolder + "scene.mb",
|
||||
enabled=lambda node: node.generateMaya.value,
|
||||
),
|
||||
|
@ -219,5 +219,4 @@ class ExportMaya(desc.Node):
|
|||
|
||||
chunk.logger.info("Maya Scene generated")
|
||||
|
||||
|
||||
chunk.logManager.end()
|
||||
|
|
|
@ -25,7 +25,7 @@ Using exifTool, this node extracts metadata of all images referenced in a sfmDat
|
|||
desc.File(
|
||||
name="input",
|
||||
label="Input",
|
||||
description="SfMData file input.",
|
||||
description="SfMData input file.",
|
||||
value="",
|
||||
),
|
||||
desc.BoolParam(
|
||||
|
@ -45,7 +45,7 @@ Using exifTool, this node extracts metadata of all images referenced in a sfmDat
|
|||
desc.StringParam(
|
||||
name="arguments",
|
||||
label="Arguments",
|
||||
description="ExifTool command arguments",
|
||||
description="ExifTool command arguments.",
|
||||
value="",
|
||||
),
|
||||
desc.BoolParam(
|
||||
|
|
|
@ -44,7 +44,7 @@ class MaskProcessing(desc.AVCommandLineNode):
|
|||
value="",
|
||||
),
|
||||
name="inputs",
|
||||
label="Input directories",
|
||||
label="Input Directories",
|
||||
description="A set of directories containing masks with the same names.",
|
||||
exposed=True,
|
||||
),
|
||||
|
@ -52,9 +52,9 @@ class MaskProcessing(desc.AVCommandLineNode):
|
|||
name="operator",
|
||||
label="Operator",
|
||||
description="Operator: Binary operator\n"
|
||||
"OR : applies binary OR between all the masks\n"
|
||||
"AND : applies binary AND between all the masks\n"
|
||||
"NOT : applies binary NOT to the first mask in the list\n",
|
||||
"OR: applies binary OR between all the masks\n"
|
||||
"AND: applies binary AND between all the masks\n"
|
||||
"NOT: applies binary NOT to the first mask in the list\n",
|
||||
value="and",
|
||||
values=["or", "and", "not"],
|
||||
),
|
||||
|
|
Loading…
Add table
Reference in a new issue