mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 02:08:08 +02:00
[nodes] add empty value for file type
This commit is contained in:
parent
fdfd2e7b01
commit
9be057090b
2 changed files with 17 additions and 6 deletions
|
@ -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],
|
||||
),
|
||||
|
|
17
start.bat
17
start.bat
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue