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:
authorJeroen Bakker <j.bakker@atmind.nl>2018-05-29 14:45:57 +0300
committerJeroen Bakker <j.bakker@atmind.nl>2018-05-29 17:22:53 +0300
commitf98c838b71e264f7f5dad6e953acd599d987ee55 (patch)
treeede8b09fc3129da67ca68a931c1c2c04f59145ec /source/blender/makesrna
parentd5889f57ae06d21312f3a82bcefe17cc660aef49 (diff)
EEVEE: LookDev reversed the background fadeout
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_space.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index 828a1c61460..94181a1a600 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -2358,10 +2358,10 @@ static void rna_def_space_view3d_shading(BlenderRNA *brna)
RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, NULL);
- prop = RNA_def_property(srna, "studiolight_fadeout", PROP_FLOAT, PROP_FACTOR);
- RNA_def_property_float_sdna(prop, NULL, "shading.studiolight_fadeout");
+ prop = RNA_def_property(srna, "studiolight_background", PROP_FLOAT, PROP_FACTOR);
+ RNA_def_property_float_sdna(prop, NULL, "shading.studiolight_background");
RNA_def_property_float_default(prop, 0.0);
- RNA_def_property_ui_text(prop, "Fadeout Background", "Fadeout the background rendering of the studiolight");
+ RNA_def_property_ui_text(prop, "Show Background", "Show the studiolight in the background");
RNA_def_property_range(prop, 0.0f, 1.0f);
RNA_def_property_ui_range(prop, 0.00f, 1.0f, 1, 3);
RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);