mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-21 04:56:28 +02:00
[nodes] texturing: add output files
This commit is contained in:
parent
eec52e45e3
commit
88a935f925
1 changed files with 26 additions and 2 deletions
|
@ -61,6 +61,30 @@ class Texturing(desc.CommandLineNode):
|
||||||
label='Output Folder',
|
label='Output Folder',
|
||||||
description='Folder for output mesh: OBJ, material and texture files.',
|
description='Folder for output mesh: OBJ, material and texture files.',
|
||||||
value='{cache}/{nodeType}/{uid0}/',
|
value='{cache}/{nodeType}/{uid0}/',
|
||||||
uid=[0],
|
uid=[],
|
||||||
)
|
),
|
||||||
|
desc.File(
|
||||||
|
name='outputMesh',
|
||||||
|
label='Output Mesh',
|
||||||
|
description='Folder for output mesh: OBJ, material and texture files.',
|
||||||
|
value='{cache}/{nodeType}/{uid0}/texturedMesh.obj',
|
||||||
|
uid=[],
|
||||||
|
group='',
|
||||||
|
),
|
||||||
|
desc.File(
|
||||||
|
name='outputMaterial',
|
||||||
|
label='Output Material',
|
||||||
|
description='Folder for output mesh: OBJ, material and texture files.',
|
||||||
|
value='{cache}/{nodeType}/{uid0}/texturedMesh.mtl',
|
||||||
|
uid=[],
|
||||||
|
group='',
|
||||||
|
),
|
||||||
|
desc.File(
|
||||||
|
name='outputTextures',
|
||||||
|
label='Output Textures',
|
||||||
|
description='Folder for output mesh: OBJ, material and texture files.',
|
||||||
|
value='{cache}/{nodeType}/{uid0}/texture_*.png',
|
||||||
|
uid=[],
|
||||||
|
group='',
|
||||||
|
),
|
||||||
]
|
]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue