mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 02:08:08 +02:00
[nodes] Texturing: turn downscale into a ChoiceParam
This commit is contained in:
parent
e8c579c942
commit
7631a824f1
1 changed files with 3 additions and 2 deletions
|
@ -39,12 +39,13 @@ class Texturing(desc.CommandLineNode):
|
|||
range=(0, 100, 1),
|
||||
uid=[0],
|
||||
),
|
||||
desc.IntParam(
|
||||
desc.ChoiceParam(
|
||||
name='downscale',
|
||||
label='Downscale',
|
||||
description='''Texture downscale factor''',
|
||||
value=2,
|
||||
range=(0, 16, 1),
|
||||
values=(1, 2, 4, 8),
|
||||
exclusive=True,
|
||||
uid=[0],
|
||||
),
|
||||
desc.BoolParam(
|
||||
|
|
Loading…
Add table
Reference in a new issue