projects
/
blender-staging.git
/ blobdiff
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Merging r39652 through r39842 from trunk into vgroup_modifiers.
[blender-staging.git]
/
source
/
blender
/
blenloader
/
intern
/
writefile.c
diff --git
a/source/blender/blenloader/intern/writefile.c
b/source/blender/blenloader/intern/writefile.c
index 406a9bdc02e06ab1f246cd0e10439dcf446ccd7b..19811a603fa05995246e967226b9acad71d0b561 100644
(file)
--- a/
source/blender/blenloader/intern/writefile.c
+++ b/
source/blender/blenloader/intern/writefile.c
@@
-1309,6
+1309,12
@@
static void write_modifiers(WriteData *wd, ListBase *modbase)
write_curvemapping(wd, tmd->curfalloff);
}
}
write_curvemapping(wd, tmd->curfalloff);
}
}
+ else if (md->type==eModifierType_WeightVGEdit) {
+ WeightVGEditModifierData *wmd = (WeightVGEditModifierData*) md;
+
+ if (wmd->cmap_curve)
+ write_curvemapping(wd, wmd->cmap_curve);
+ }
}
}
}
}