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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-02-01 20:03:29 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-02-01 20:04:00 +0300
commitf92b8c2613355e20f77e0570184544b844b9d759 (patch)
treea43cb83c1ce1acb1c6eb0d4808ab4c90ef7324d2
parent530d9f454c209bfe7b530b29252991dab8dfed49 (diff)
Fix T58206: Eevee light energy soft maximum is too low.
-rw-r--r--source/blender/makesrna/intern/rna_lamp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_lamp.c b/source/blender/makesrna/intern/rna_lamp.c
index 0a8d174980f..55d0a8a856b 100644
--- a/source/blender/makesrna/intern/rna_lamp.c
+++ b/source/blender/makesrna/intern/rna_lamp.c
@@ -139,7 +139,7 @@ static void rna_def_light(BlenderRNA *brna)
prop = RNA_def_property(srna, "energy", PROP_FLOAT, PROP_NONE);
RNA_def_property_float_default(prop, 10.0f);
- RNA_def_property_ui_range(prop, 0, 10, 1, 3);
+ RNA_def_property_ui_range(prop, 0, 1000000.0f, 1, 3);
RNA_def_property_ui_text(prop, "Energy", "Amount of light emitted");
RNA_def_property_update(prop, 0, "rna_Light_draw_update");