[Bf-blender-cvs] [1982d110f4e] blender-v2.82-release: Fix T62882: Make Dynamic Paint update weights in viewport

Nico Zevallos noreply at git.blender.org
Tue Jan 21 09:43:59 CET 2020


Commit: 1982d110f4ec364a5deddbf262d78c4bcf5224e1
Author: Nico Zevallos
Date:   Tue Jan 21 09:40:06 2020 +0100
Branches: blender-v2.82-release
https://developer.blender.org/rB1982d110f4ec364a5deddbf262d78c4bcf5224e1

Fix T62882: Make Dynamic Paint update weights in viewport

Related to T62882
When the SupportsMapping modifier flag was added to the dynamic paint
modifier it was added commented out. It may have not worked back then,
but it seems to work fine now.
MOD_weightvgedit.c was already updated similarly.

Reviewed By: jbakker

Differential Revision: https://developer.blender.org/D6072

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

M	source/blender/modifiers/intern/MOD_dynamicpaint.c

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

diff --git a/source/blender/modifiers/intern/MOD_dynamicpaint.c b/source/blender/modifiers/intern/MOD_dynamicpaint.c
index 26ee75140a6..19444a3d363 100644
--- a/source/blender/modifiers/intern/MOD_dynamicpaint.c
+++ b/source/blender/modifiers/intern/MOD_dynamicpaint.c
@@ -178,7 +178,7 @@ ModifierTypeInfo modifierType_DynamicPaint = {
     /* structSize */ sizeof(DynamicPaintModifierData),
     /* type */ eModifierTypeType_Constructive,
     /* flags */ eModifierTypeFlag_AcceptsMesh |
-        /*                          eModifierTypeFlag_SupportsMapping |*/
+        eModifierTypeFlag_SupportsMapping |
         eModifierTypeFlag_UsesPointCache | eModifierTypeFlag_Single |
         eModifierTypeFlag_UsesPreview,



More information about the Bf-blender-cvs mailing list