From fbd05d3b6afd207c4de763cfe4341a4da48e55e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Foucault?= Date: Tue, 13 Jun 2017 17:40:10 +0200 Subject: [PATCH] Probe: fix grid default resolution. --- source/blender/blenkernel/intern/lightprobe.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/blenkernel/intern/lightprobe.c b/source/blender/blenkernel/intern/lightprobe.c index e0e778725fc..51fd2504da2 100644 --- a/source/blender/blenkernel/intern/lightprobe.c +++ b/source/blender/blenkernel/intern/lightprobe.c @@ -44,6 +44,7 @@ void BKE_lightprobe_init(LightProbe *probe) { BLI_assert(MEMCMP_STRUCT_OFS_IS_ZERO(probe, id)); + probe->grid_resolution_x = probe->grid_resolution_y = probe->grid_resolution_z = 4; probe->distinf = 5.0f; probe->distpar = 5.0f; probe->falloff = 0.2f;