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:
authorMichael Fox <mfoxdogg@gmail.com>2009-01-20 13:50:36 +0300
committerMichael Fox <mfoxdogg@gmail.com>2009-01-20 13:50:36 +0300
commit5cf8612d4b216120787e95672f4444cf18301165 (patch)
treef1ae107c18c7e98d7fef13396173a8350908e8d4 /source/blender/editors/object/object_intern.h
parent2fd331475ff3ddc794300e546ec2aa6c9fd3879b (diff)
2.5
***** - made Group operators more atomic, no menus, able to build on top of each other - add/remove selected from group will be done later - new notifier is needed, ton will code - Group Create adds the object to the new group, and a string can be passed to it toi make a custum named group from Py, etc -keymaps remains the same (ctrl-g, create group - alt-ctrl-g, remove object from all groups) - Added 2 more operators , GROUP_OT_objects_remove_active (alt-shift-g) , GROUP_OT_objects_add_active (ctrl-shift-g) - adds/removes object from groups that are attached to the active object
Diffstat (limited to 'source/blender/editors/object/object_intern.h')
-rw-r--r--source/blender/editors/object/object_intern.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/object/object_intern.h b/source/blender/editors/object/object_intern.h
index da27ef95c2a..405b3805df4 100644
--- a/source/blender/editors/object/object_intern.h
+++ b/source/blender/editors/object/object_intern.h
@@ -75,6 +75,8 @@ void remake_editLatt(Object *obedit);
/* editgroup.c */
void GROUP_OT_group_create(struct wmOperatorType *ot);
void GROUP_OT_group_remove(struct wmOperatorType *ot);
+void GROUP_OT_objects_add_active(struct wmOperatorType *ot);
+void GROUP_OT_objects_remove_active(struct wmOperatorType *ot);
#endif /* ED_OBJECT_INTERN_H */