[nodes] add empty value for file type

This commit is contained in:
Thomas Zorroche 2021-07-29 14:49:04 +02:00 committed by Fabien Castan
parent fdfd2e7b01
commit 9be057090b
2 changed files with 17 additions and 6 deletions

View file

@ -74,7 +74,7 @@ Many cameras are contributing to the low frequencies and only the best ones cont
label='Texture File Type',
description='Texture File Type',
value='png',
values=('jpg', 'png', 'tiff', 'exr'),
values=('', 'jpg', 'png', 'tiff', 'exr'),
exclusive=True,
uid=[0],
),
@ -83,7 +83,7 @@ Many cameras are contributing to the low frequencies and only the best ones cont
label='NormalMap File Type',
description='NormalMap Texture File Type',
value='png',
values=('jpg', 'png', 'tiff', 'exr'),
values=('', 'jpg', 'png', 'tiff', 'exr'),
exclusive=True,
uid=[0],
),
@ -92,7 +92,7 @@ Many cameras are contributing to the low frequencies and only the best ones cont
label='HeightMap File Type',
description='HeightMap Texture File Type',
value='png',
values=('jpg', 'png', 'tiff', 'exr'),
values=('', 'jpg', 'png', 'tiff', 'exr'),
exclusive=True,
uid=[0],
),

View file

@ -1,4 +1,15 @@
# Windows
# Add the aliceVision and qtPlugins folders with the binaries to this directory
REM Windows
REM Add the aliceVision and qtPlugins folders with the binaries to this directory
set MESHROOM_INSTALL_DIR=%CD%
set PYTHONPATH=%CD% && python meshroom/ui
set PYTHONPATH=%CD%
REM # Development options
REM set MESHROOM_OUTPUT_QML_WARNINGS=1
REM set MESHROOM_INSTANT_CODING=1
REM set QT_PLUGIN_PATH=C:\dev\meshroom\install
REM set QML2_IMPORT_PATH=C:\dev\meshroom\install\qml
REM set PATH=C:\dev\AliceVision\install\bin;C:\dev\vcpkg\installed\x64-windows\bin
python meshroom\ui