Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <bastien@blender.org>2020-10-05 13:30:02 +0300
committerBastien Montagne <bastien@blender.org>2020-10-05 13:35:50 +0300
commit667c868a4bfa755b346613947d602ab6b0b637e8 (patch)
treece7661edd6b7256c78bcd610d3f26ec807c8d904 /amaranth
parent27c2994094f5b634ee3c2ccfc40ce67bd3768695 (diff)
Fix `script_load_addons` test (some invalid values passed to property definitions).
Diffstat (limited to 'amaranth')
-rw-r--r--amaranth/render/meshlight_add.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/amaranth/render/meshlight_add.py b/amaranth/render/meshlight_add.py
index a4c4230c..c1ca94a0 100644
--- a/amaranth/render/meshlight_add.py
+++ b/amaranth/render/meshlight_add.py
@@ -48,7 +48,7 @@ class AMTH_OBJECT_OT_meshlight_add(bpy.types.Operator):
name="Temperature",
min=800, max=12000.0,
default=5500.0,
- step=800.0,
+ step=100.0,
description="Temperature in Kelvin. Lower is warmer, higher is colder",
)