summaryrefslogtreecommitdiff
path: root/scene
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2017-10-04 09:31:51 -0300
committerJuan Linietsky <reduzio@gmail.com>2017-10-04 09:32:16 -0300
commitef08228db738ea731a975c986ccf4da873930fbd (patch)
treead41d09e5caf7bca1805ab8468c9c062cc8bd177 /scene
parente6216ac6c974a1e9bfbc73870e2746fe63cf166a (diff)
Restored normal bias as default bias in GIProbe
Diffstat (limited to 'scene')
-rw-r--r--scene/3d/gi_probe.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/3d/gi_probe.cpp b/scene/3d/gi_probe.cpp
index 66364d40f9..9d55a82824 100644
--- a/scene/3d/gi_probe.cpp
+++ b/scene/3d/gi_probe.cpp
@@ -1486,8 +1486,8 @@ GIProbe::GIProbe() {
subdiv = SUBDIV_128;
dynamic_range = 4;
energy = 1.0;
- bias = 0.0;
- normal_bias = 0.8;
+ bias = 1.5;
+ normal_bias = 0.0;
propagation = 1.0;
extents = Vector3(10, 10, 10);
color_scan_cell_width = 4;