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:
authorAdam Nydahl <Loginer>2019-05-27 18:07:17 +0300
committerClément Foucault <foucault.clem@gmail.com>2019-05-27 18:13:09 +0300
commit7353e0563ee2aa0c6393112139ea38debdd18b54 (patch)
tree8d85f0ae6966b4cb3b6499c4dc04da09f7965602 /source/blender/makesrna
parent7a308e65ef1f85629dc3a766452407924e00f75d (diff)
Eevee: Fix Aliasing in Light Probes
Differential Revision: https://developer.blender.org/D4869
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_scene.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 894f9bfbe3e..a4b305d36ae 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -6584,7 +6584,7 @@ static void rna_def_scene_eevee(BlenderRNA *brna)
RNA_def_property_override_flag(prop, PROPOVERRIDE_OVERRIDABLE_STATIC);
prop = RNA_def_property(srna, "gi_filter_quality", PROP_FLOAT, PROP_NONE);
- RNA_def_property_float_default(prop, 1.0f);
+ RNA_def_property_float_default(prop, 3.0f);
RNA_def_property_ui_text(
prop, "Filter Quality", "Take more samples during cubemap filtering to remove artifacts");
RNA_def_property_range(prop, 1.0f, 8.0f);