mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-02 00:08:29 +02:00
[nodes] add outputMeshFileType parameter for meshMasking
This commit is contained in:
parent
c919e81542
commit
ef11acb4f4
1 changed files with 12 additions and 3 deletions
|
@ -21,10 +21,19 @@ Decimate triangles based on image masks.
|
|||
desc.File(
|
||||
name='inputMesh',
|
||||
label='Input Mesh',
|
||||
description='''Input Mesh (OBJ file format).''',
|
||||
description='''Input Mesh''',
|
||||
value='',
|
||||
uid=[0],
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='outputMeshFileType',
|
||||
label='Output File Type',
|
||||
description='File Type',
|
||||
value='gltf',
|
||||
values=('obj', 'gltf', 'fbx', 'stl'),
|
||||
exclusive=True,
|
||||
uid=[0],
|
||||
),
|
||||
desc.ListAttribute(
|
||||
elementDesc=desc.File(
|
||||
name="masksFolder",
|
||||
|
@ -91,8 +100,8 @@ Decimate triangles based on image masks.
|
|||
desc.File(
|
||||
name='outputMesh',
|
||||
label='Output Mesh',
|
||||
description='''Output mesh (OBJ file format).''',
|
||||
value=desc.Node.internalFolder + 'mesh.obj',
|
||||
description='''Output mesh.''',
|
||||
value=desc.Node.internalFolder + 'mesh.{outputMeshFileTypeValue}',
|
||||
uid=[],
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue