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:
authorClément Foucault <foucault.clem@gmail.com>2017-11-01 02:54:47 +0300
committerClément Foucault <foucault.clem@gmail.com>2017-11-01 03:17:35 +0300
commit0518577f5d3ad974a75e124b900d4394834d924b (patch)
treefe82510a7ff085f5c7651a56807b0c93f1675fe2 /source/blender/blenloader/intern
parent98cbd4c9259c3552efb76e59ca250a01f0c8b011 (diff)
Eevee: Fix Exponent default in versioning code
Diffstat (limited to 'source/blender/blenloader/intern')
-rw-r--r--source/blender/blenloader/intern/versioning_280.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/versioning_280.c b/source/blender/blenloader/intern/versioning_280.c
index da1562d3a64..2485309fb80 100644
--- a/source/blender/blenloader/intern/versioning_280.c
+++ b/source/blender/blenloader/intern/versioning_280.c
@@ -386,7 +386,7 @@ void blo_do_versions_280(FileData *fd, Library *UNUSED(lib), Main *main)
if (!MAIN_VERSION_ATLEAST(main, 280, 1)) {
if (!DNA_struct_elem_find(fd->filesdna, "Lamp", "float", "bleedexp")) {
for (Lamp *la = main->lamp.first; la; la = la->id.next) {
- la->bleedexp = 120.0f;
+ la->bleedexp = 2.5f;
}
}