Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/blenloader/intern/readfile.c')
-rw-r--r--source/blender/blenloader/intern/readfile.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index d215bdf67cd..37d15b65de5 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -2986,12 +2986,14 @@ static void direct_link_modifiers(FileData *fd, ListBase *lb)
ClothModifierData *clmd = (ClothModifierData*) md;
clmd->clothObject = NULL;
-
+ /*
clmd->sim_parms= newdataadr(fd, clmd->sim_parms);
clmd->coll_parms= newdataadr(fd, clmd->coll_parms);
+ */
}
else if (md->type==eModifierType_Collision) {
+ /*
CollisionModifierData *collmd = (CollisionModifierData*) md;
collmd->x = NULL;
@@ -3001,6 +3003,7 @@ static void direct_link_modifiers(FileData *fd, ListBase *lb)
collmd->time = -1;
collmd->numverts = 0;
collmd->tree = NULL;
+ */
}
else if (md->type==eModifierType_Hook) {
HookModifierData *hmd = (HookModifierData*) md;