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:
authorCampbell Barton <ideasman42@gmail.com>2008-04-27 22:26:20 +0400
committerCampbell Barton <ideasman42@gmail.com>2008-04-27 22:26:20 +0400
commit57c1fbe5579b786ee24e58ad1d67ca5ad0625f76 (patch)
tree6c938654ad84f0f126dc925d9a5b625340be0ef4 /source/blender/blenkernel/intern/group.c
parent9ea254ca345585ff6aae0286fa301795dc65ebf2 (diff)
remove old particle system.
also removed quat, dquat, and sumohandle from the Object struct since they aren't used anywhere.
Diffstat (limited to 'source/blender/blenkernel/intern/group.c')
-rw-r--r--source/blender/blenkernel/intern/group.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/source/blender/blenkernel/intern/group.c b/source/blender/blenkernel/intern/group.c
index 706bdf1245c..4a1468f82c5 100644
--- a/source/blender/blenkernel/intern/group.c
+++ b/source/blender/blenkernel/intern/group.c
@@ -84,7 +84,6 @@ void unlink_group(Group *group)
}
for(ob= G.main->object.first; ob; ob= ob->id.next) {
bActionStrip *strip;
- PartEff *paf;
if(ob->dup_group==group) {
ob->dup_group= NULL;
@@ -95,12 +94,9 @@ void unlink_group(Group *group)
strip->object= NULL;
}
}
- for(paf= ob->effect.first; paf; paf= paf->next) {
- if(paf->type==EFF_PARTICLE) {
- if(paf->group)
- paf->group= NULL;
- }
- }
+ /* TODO - psys groups */
+ /* TODO - lamp groups */
+ /* TODO - render groups */
}
group->id.us= 0;
}