Fix T48486: Not enough precision in Volume Sampling Step Size input

Volumes might be small, makes sense to use more precision here.
This commit is contained in:
Sergey Sharybin 2016-05-24 12:16:16 +02:00
parent a7c3ec4feb
commit e1dd83b399
Notes: blender-bot 2023-10-04 09:42:55 +02:00
Referenced by issue #48486, Not enough precision in Volume Sampling Step Size input
1 changed files with 1 additions and 1 deletions

View File

@ -359,7 +359,7 @@ class CyclesRenderSettings(bpy.types.PropertyGroup):
description="Distance between volume shader samples when rendering the volume "
"(lower values give more accurate and detailed results, but also increased render time)",
default=0.1,
min=0.0000001, max=100000.0, soft_min=0.01, soft_max=1.0
min=0.0000001, max=100000.0, soft_min=0.01, soft_max=1.0, precision=4
)
cls.volume_max_steps = IntProperty(