mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-01 19:27:10 +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),
|
range=(0, 100, 1),
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
desc.IntParam(
|
desc.ChoiceParam(
|
||||||
name='downscale',
|
name='downscale',
|
||||||
label='Downscale',
|
label='Downscale',
|
||||||
description='''Texture downscale factor''',
|
description='''Texture downscale factor''',
|
||||||
value=2,
|
value=2,
|
||||||
range=(0, 16, 1),
|
values=(1, 2, 4, 8),
|
||||||
|
exclusive=True,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
desc.BoolParam(
|
desc.BoolParam(
|
||||||
|
|
Loading…
Add table
Reference in a new issue