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:
authorNicholas Bishop <nicholasbishop@gmail.com>2006-12-25 11:52:57 +0300
committerNicholas Bishop <nicholasbishop@gmail.com>2006-12-25 11:52:57 +0300
commitdd5077060efa99412112ad27c0db4e4c6668c3e0 (patch)
tree85a2b6c1ce5e12873245138886b552824616cb38 /source/blender/blenloader
parent5aabafeb9944b2ed27b1a9158154f134e0d2f150 (diff)
Cleanup of the SDNA SculptData struct. Moved a lot of data that isn't saved into a separate SculptSession struct (outside of SDNA.)
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 0330883b2f9..8c65a3b5baa 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -3134,13 +3134,6 @@ static void direct_link_scene(FileData *fd, Scene *sce)
sce->toolsettings= newdataadr(fd, sce->toolsettings);
- /* SculptData */
- sce->sculptdata.active_ob= NULL;
- sce->sculptdata.vertex_users= NULL;
- sce->sculptdata.vertex_users_mem= NULL;
- sce->sculptdata.texrndr= NULL;
- sce->sculptdata.propset= 0;
- sce->sculptdata.undo= NULL;
/* SculptData textures */
for(a=0; a<MAX_MTEX; ++a)
sce->sculptdata.mtex[a]= newdataadr(fd,sce->sculptdata.mtex[a]);