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:
authorAlexander Gavrilov <angavrilov@gmail.com>2016-08-06 10:49:42 +0300
committerAlexander Gavrilov <angavrilov@gmail.com>2016-08-06 10:49:42 +0300
commit4158737cb2d79898b9f1147eaa26eb486f4980a1 (patch)
tree2d012eab4e9e530f13734bc324ba7bcb5595cfbf
parent277b1d76ff73c3dfb2150ec06af622962c300618 (diff)
Add the collision group option to the UI for boid particle physics.
The option already works, just missing from the ui since it has completely different option set from newtonian and fluid.
-rw-r--r--release/scripts/startup/bl_ui/properties_particle.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/properties_particle.py b/release/scripts/startup/bl_ui/properties_particle.py
index c2580d4ac71..89ea9dff69b 100644
--- a/release/scripts/startup/bl_ui/properties_particle.py
+++ b/release/scripts/startup/bl_ui/properties_particle.py
@@ -716,6 +716,8 @@ class PARTICLE_PT_physics(ParticleButtonsPanel, Panel):
col.prop(boids, "land_personal_space")
col.prop(boids, "land_stick_force")
+ layout.prop(part, "collision_group")
+
split = layout.split()
col = split.column(align=True)