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:
authorJanne Karhu <jhkarh@gmail.com>2009-10-19 01:12:04 +0400
committerJanne Karhu <jhkarh@gmail.com>2009-10-19 01:12:04 +0400
commit816856f953250f7da59c819bde1b77d59c32017c (patch)
tree4f7617ee39bb3fc6bd3d671640a7eecefe6bc2ca /source/blender/editors/physics/physics_ops.c
parentf750cc7dbd893b0e37feead00bfbbaac2c5b6a09 (diff)
Small particles feature: Multiple group visualization counts per group object are now possible (+/- buttons next to the count list). This allows for example an array of duplicated objects "ob1, ob2, ob1, ob3" without duplicating the actual object (ob1 in the example) in the group.
Diffstat (limited to 'source/blender/editors/physics/physics_ops.c')
-rw-r--r--source/blender/editors/physics/physics_ops.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/physics/physics_ops.c b/source/blender/editors/physics/physics_ops.c
index 0ebbfa6b701..ee46279d567 100644
--- a/source/blender/editors/physics/physics_ops.c
+++ b/source/blender/editors/physics/physics_ops.c
@@ -79,6 +79,8 @@ static void operatortypes_particle(void)
WM_operatortype_append(PARTICLE_OT_connect_hair);
WM_operatortype_append(PARTICLE_OT_disconnect_hair);
+ WM_operatortype_append(PARTICLE_OT_dupliob_copy);
+ WM_operatortype_append(PARTICLE_OT_dupliob_remove);
WM_operatortype_append(PARTICLE_OT_dupliob_move_up);
WM_operatortype_append(PARTICLE_OT_dupliob_move_down);
}