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-02-03 22:03:18 +0300
committerCampbell Barton <ideasman42@gmail.com>2008-02-03 22:03:18 +0300
commita9518afc67d1350b2bdf369dd5be891956ddb5f1 (patch)
tree67d3ab1747062436cc7d7b555f02c47a8df7b7bd /source/blender/blenkernel/BKE_group.h
parent7e7f5628c3c5b8105122c06426d9d870c17fb771 (diff)
feature request from peach, remove selected objects from 1 group.
Also made rem_from_group return if it removed the object which save some looping. Added a node in the blender help message that background mode dosnt load the .B.blend file as a bug was reported recently because of this.
Diffstat (limited to 'source/blender/blenkernel/BKE_group.h')
-rw-r--r--source/blender/blenkernel/BKE_group.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_group.h b/source/blender/blenkernel/BKE_group.h
index bdc56b2cbd1..f7158daa937 100644
--- a/source/blender/blenkernel/BKE_group.h
+++ b/source/blender/blenkernel/BKE_group.h
@@ -44,7 +44,7 @@ void free_group(struct Group *group);
void unlink_group(struct Group *group);
struct Group *add_group(char *name);
void add_to_group(struct Group *group, struct Object *ob);
-void rem_from_group(struct Group *group, struct Object *ob);
+int rem_from_group(struct Group *group, struct Object *ob);
struct Group *find_group(struct Object *ob, struct Group *group);
int object_in_group(struct Object *ob, struct Group *group);
int group_is_animated(struct Object *parent, struct Group *group);