[Bf-blender-cvs] [d5d626df236] master: Fix T52344: Softbody on Text.

Bastien Montagne noreply at git.blender.org
Fri Aug 11 10:39:01 CEST 2017


Commit: d5d626df236b17c2d4ac731b2aaace52a2611304
Author: Bastien Montagne
Date:   Fri Aug 11 10:24:57 2017 +0200
Branches: master
https://developer.blender.org/rBd5d626df236b17c2d4ac731b2aaace52a2611304

Fix T52344: Softbody on Text.

For some reasons (c) softbody modifier was marked as compatible with
curves... Would need much more work though, so for now just removing
that flag!

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

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

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

diff --git a/source/blender/modifiers/intern/MOD_softbody.c b/source/blender/modifiers/intern/MOD_softbody.c
index a0bbe5da04a..f5fc1d8ced8 100644
--- a/source/blender/modifiers/intern/MOD_softbody.c
+++ b/source/blender/modifiers/intern/MOD_softbody.c
@@ -100,8 +100,7 @@ ModifierTypeInfo modifierType_Softbody = {
 	/* structName */        "SoftbodyModifierData",
 	/* structSize */        sizeof(SoftbodyModifierData),
 	/* type */              eModifierTypeType_OnlyDeform,
-	/* flags */             eModifierTypeFlag_AcceptsCVs |
-	                        eModifierTypeFlag_AcceptsLattice |
+	/* flags */             eModifierTypeFlag_AcceptsLattice |
 	                        eModifierTypeFlag_RequiresOriginalData |
 	                        eModifierTypeFlag_Single,




More information about the Bf-blender-cvs mailing list