[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [57206] trunk/blender/source/blender/ modifiers/intern/MOD_mirror.c: fix [#35545] Weight paint with mirror modifier does not accurate represent bone influence

Campbell Barton ideasman42 at gmail.com
Mon Jun 3 00:40:45 CEST 2013


Revision: 57206
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=57206
Author:   campbellbarton
Date:     2013-06-02 22:40:45 +0000 (Sun, 02 Jun 2013)
Log Message:
-----------
fix [#35545] Weight paint with mirror modifier does not accurate represent bone influence

Modified Paths:
--------------
    trunk/blender/source/blender/modifiers/intern/MOD_mirror.c

Modified: trunk/blender/source/blender/modifiers/intern/MOD_mirror.c
===================================================================
--- trunk/blender/source/blender/modifiers/intern/MOD_mirror.c	2013-06-02 22:21:45 UTC (rev 57205)
+++ trunk/blender/source/blender/modifiers/intern/MOD_mirror.c	2013-06-02 22:40:45 UTC (rev 57206)
@@ -345,7 +345,9 @@
 	                        eModifierTypeFlag_SupportsMapping |
 	                        eModifierTypeFlag_SupportsEditmode |
 	                        eModifierTypeFlag_EnableInEditmode |
-	                        eModifierTypeFlag_AcceptsCVs,
+	                        eModifierTypeFlag_AcceptsCVs |
+	                        /* this is only the case when 'MOD_MIR_VGROUP' is used */
+	                        eModifierTypeFlag_UsesPreview,
 
 	/* copyData */          copyData,
 	/* deformVerts */       NULL,




More information about the Bf-blender-cvs mailing list