Fixed GIProbe blending, closes #15164

This commit is contained in:
Juan Linietsky 2018-01-05 10:34:31 -03:00
parent a8a3d5c835
commit 0c86c1ad15

View file

@ -1476,9 +1476,9 @@ void gi_probe_compute(mediump sampler3D probe, mat4 probe_xform, vec3 bounds,vec
return;
}
//vec3 blendv = probe_pos/bounds * 2.0 - 1.0;
//float blend = 1.001-max(blendv.x,max(blendv.y,blendv.z));
float blend=1.0;
vec3 blendv = abs(probe_pos/bounds * 2.0 - 1.0);
float blend = 1.001-max(blendv.x,max(blendv.y,blendv.z));
//float blend=1.0;
float max_distance = length(bounds);