[Bf-blender-cvs] [6f6c25c681b] greasepencil-refactor: GPencil: Set default VFX Shadow color to Gray

Antonio Vazquez noreply at git.blender.org
Wed Dec 18 19:19:08 CET 2019


Commit: 6f6c25c681bbce5769e826d74e910c6bce9c8445
Author: Antonio Vazquez
Date:   Wed Dec 18 19:16:14 2019 +0100
Branches: greasepencil-refactor
https://developer.blender.org/rB6f6c25c681bbce5769e826d74e910c6bce9c8445

GPencil: Set default VFX Shadow color to Gray

===================================================================

M	source/blender/shader_fx/intern/FX_shader_shadow.c

===================================================================

diff --git a/source/blender/shader_fx/intern/FX_shader_shadow.c b/source/blender/shader_fx/intern/FX_shader_shadow.c
index 04160f618eb..68d23d65181 100644
--- a/source/blender/shader_fx/intern/FX_shader_shadow.c
+++ b/source/blender/shader_fx/intern/FX_shader_shadow.c
@@ -44,7 +44,7 @@ static void initData(ShaderFxData *md)
   gpfx->rotation = 0.0f;
   ARRAY_SET_ITEMS(gpfx->offset, 15, 20);
   ARRAY_SET_ITEMS(gpfx->scale, 1.0f, 1.0f);
-  ARRAY_SET_ITEMS(gpfx->shadow_rgba, 0.54f, 0.62f, 1.0f, 0.9f);
+  ARRAY_SET_ITEMS(gpfx->shadow_rgba, 0.0f, 0.0f, 0.0f, 0.8f);
 
   gpfx->amplitude = 10.0f;
   gpfx->period = 20.0f;



More information about the Bf-blender-cvs mailing list