mesh-cache deform modifier,

supports MDD and PC2 formats.

see wiki docs:
http://wiki.blender.org/index.php/Doc:2.6/Manual/Modifiers/Deform/Mesh_Cache
This commit is contained in:
Campbell Barton
2013-01-21 15:41:00 +00:00
parent 4c0ebedc66
commit caac27dcbc
17 changed files with 1357 additions and 13 deletions

View File

@@ -459,6 +459,10 @@ void BKE_bpath_traverse_id(Main *bmain, ID *id, BPathVisitor visit_cb, const int
OceanModifierData *omd = (OceanModifierData *) md;
rewrite_path_fixed(omd->cachepath, visit_cb, absbase, bpath_user_data);
}
else if (md->type == eModifierType_MeshCache) {
MeshCacheModifierData *mcmd = (MeshCacheModifierData *) md;
rewrite_path_fixed(mcmd->filepath, visit_cb, absbase, bpath_user_data);
}
}
if (ob->soft) {