mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-30 17:36:33 +02:00
[nodes] A-C: 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:
parent
6ac9948b04
commit
241bead35c
10 changed files with 757 additions and 668 deletions
|
@ -11,28 +11,28 @@ class ConvertMesh(desc.AVCommandLineNode):
|
|||
|
||||
inputs = [
|
||||
desc.File(
|
||||
name='inputMesh',
|
||||
label='Input Mesh',
|
||||
description='Input Mesh (*.obj, *.mesh, *.meshb, *.ply, *.off, *.stl).',
|
||||
value='',
|
||||
name="inputMesh",
|
||||
label="Input Mesh",
|
||||
description="Input mesh (*.obj, *.mesh, *.meshb, *.ply, *.off, *.stl).",
|
||||
value="",
|
||||
uid=[0],
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='outputMeshFileType',
|
||||
label='File Type',
|
||||
description='''Output Mesh Format (*.obj, *.gltf, *.fbx, *.stl).''',
|
||||
value='obj',
|
||||
values=('gltf', 'obj', 'fbx', 'stl'),
|
||||
name="outputMeshFileType",
|
||||
label="File Type",
|
||||
description="Output mesh format (*.obj, *.gltf, *.fbx, *.stl).",
|
||||
value="obj",
|
||||
values=("gltf", "obj", "fbx", "stl"),
|
||||
exclusive=True,
|
||||
uid=[0],
|
||||
group='',
|
||||
group="",
|
||||
),
|
||||
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=[],
|
||||
),
|
||||
|
@ -40,10 +40,10 @@ class ConvertMesh(desc.AVCommandLineNode):
|
|||
|
||||
outputs = [
|
||||
desc.File(
|
||||
name='output',
|
||||
label='Mesh',
|
||||
description='''Output mesh (*.obj, *.mesh, *.meshb, *.ply, *.off, *.stl).''',
|
||||
value=desc.Node.internalFolder + 'mesh.' + '{outputMeshFileTypeValue}',
|
||||
name="output",
|
||||
label="Mesh",
|
||||
description="Output mesh (*.obj, *.mesh, *.meshb, *.ply, *.off, *.stl).",
|
||||
value=desc.Node.internalFolder + "mesh." + "{outputMeshFileTypeValue}",
|
||||
uid=[],
|
||||
),
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue