mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-31 18:06:31 +02:00
[nodes] ConvertMesh: add out mesh file type parameter
This commit is contained in:
parent
f26aea656e
commit
295dee5dd9
1 changed files with 6 additions and 7 deletions
|
@ -18,14 +18,13 @@ class ConvertMesh(desc.CommandLineNode):
|
|||
uid=[0],
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='outputMeshFormat',
|
||||
label='Output Mesh Format',
|
||||
description='''Output Mesh Format (*.obj, *.mesh, *.meshb, *.ply, *.off, *.stl).''',
|
||||
value='obj',
|
||||
values=['obj', 'mesh', 'meshb', 'ply', 'off','stl'],
|
||||
name='outputMeshFileType',
|
||||
label='File Type',
|
||||
description='''Output Mesh Format (*.obj, *.gltf, *.fbx, *.stl).''',
|
||||
value='gltf',
|
||||
values=('gltf', 'obj', 'fbx', 'stl'),
|
||||
exclusive=True,
|
||||
uid=[0],
|
||||
group='',
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='verboseLevel',
|
||||
|
@ -43,7 +42,7 @@ class ConvertMesh(desc.CommandLineNode):
|
|||
name='output',
|
||||
label='Output Mesh',
|
||||
description='''Output mesh (*.obj, *.mesh, *.meshb, *.ply, *.off, *.stl).''',
|
||||
value=desc.Node.internalFolder + 'mesh.' + '{outputMeshFormatValue}',
|
||||
value=desc.Node.internalFolder + 'mesh.' + '{outputMeshFileTypeValue}',
|
||||
uid=[],
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue