[nodes] M-P: Harmonize and improve labels and descriptions

Use CamelCase for all labels, always end descriptions with periods, and
replace the mixed use of single and double quotes with double quotes
only.
This commit is contained in:
Candice Bentéjac 2023-06-16 10:31:42 +02:00
parent 3146dcface
commit 41280dc22a
19 changed files with 920 additions and 906 deletions

View file

@ -11,44 +11,44 @@ TODO.
inputs = [
desc.File(
name='inputPath',
label='Normal Maps Folder',
description='Path to the folder containing the normal maps and the masks.',
value='',
name="inputPath",
label="Normal Maps Folder",
description="Path to the folder containing the normal maps and the masks.",
value="",
uid=[0]
),
desc.File(
name='sfmDataFile',
label='SfMData',
description='Input SfMData file.',
value='',
name="sfmDataFile",
label="SfMData",
description="Input SfMData file.",
value="",
uid=[0],
),
desc.IntParam(
name='downscale',
label='Downscale Factor',
description='Downscale factor for faster results.',
name="downscale",
label="Downscale Factor",
description="Downscale factor for faster results.",
value=1,
range=(1, 10, 1),
advanced=True,
uid=[0]
),
desc.ChoiceParam(
name='verboseLevel',
label='Verbose Level',
description='Verbosity level (fatal, error, warning, info, debug, trace).',
value='info',
values=['fatal', 'error', 'warning', 'info', 'debug', 'trace'],
name="verboseLevel",
label="Verbose Level",
description="Verbosity level (fatal, error, warning, info, debug, trace).",
value="info",
values=["fatal", "error", "warning", "info", "debug", "trace"],
exclusive=True,
uid=[]
uid=[],
)
]
outputs = [
desc.File(
name='outputPath',
label='Output Path',
description='Path to the output folder.',
name="outputPath",
label="Output Path",
description="Path to the output folder.",
value=desc.Node.internalFolder,
uid=[]
)