[Bf-blender-cvs] [efa840f99ff] blender-v2.79-release: Fix T52344: Softbody on Text.

Bastien Montagne noreply at git.blender.org
Thu Aug 17 14:45:13 CEST 2017


Commit: efa840f99ffd77773f3fe4bc59108aeccf223fd8
Author: Bastien Montagne
Date:   Fri Aug 11 10:24:57 2017 +0200
Branches: blender-v2.79-release
https://developer.blender.org/rBefa840f99ffd77773f3fe4bc59108aeccf223fd8

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