[Bf-blender-cvs] [43a89c3] alembic_pointcache: Disabled specialized Point Cache modifier handling in the modifier stack, this will be replaced and is not correct anyway.

Lukas Tönne noreply at git.blender.org
Tue Feb 24 18:40:53 CET 2015


Commit: 43a89c3e93d02d1784cddd4b32bf9261e87e8943
Author: Lukas Tönne
Date:   Tue Feb 24 18:37:45 2015 +0100
Branches: alembic_pointcache
https://developer.blender.org/rB43a89c3e93d02d1784cddd4b32bf9261e87e8943

Disabled specialized Point Cache  modifier handling in the modifier
stack, this will be replaced and is not correct anyway.

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

M	source/blender/blenkernel/intern/DerivedMesh.c

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

diff --git a/source/blender/blenkernel/intern/DerivedMesh.c b/source/blender/blenkernel/intern/DerivedMesh.c
index 72326d3..07a5fc2 100644
--- a/source/blender/blenkernel/intern/DerivedMesh.c
+++ b/source/blender/blenkernel/intern/DerivedMesh.c
@@ -1475,6 +1475,7 @@ static ModifierData *mesh_find_start_modifier(Scene *scene, Object *ob, VirtualM
 	ModifierData *md;
 	
 	for (md = ob->modifiers.last; md; md = md->prev) {
+#if 0
 		if (md->type == eModifierType_PointCache) {
 			PointCacheModifierData *pcmd = (PointCacheModifierData *)md;
 			struct PTCReader *reader;
@@ -1494,6 +1495,7 @@ static ModifierData *mesh_find_start_modifier(Scene *scene, Object *ob, VirtualM
 				break;
 			}
 		}
+#endif
 	}
 	if (md)
 		return md;




More information about the Bf-blender-cvs mailing list