[nodes] Texturing: turn downscale into a ChoiceParam

This commit is contained in:
Yann Lanthony 2017-11-17 18:57:00 +01:00
parent e8c579c942
commit 7631a824f1

View file

@ -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(