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-06-21 15:09:16 +0400
committerJanne Karhu <jhkarh@gmail.com>2009-06-21 15:09:16 +0400
commit1f9368b37ec9a418cd8996ffd9ee24f4bd47b2dd (patch)
tree8bdb6594c65e22a07a528d44090265f380bf404e /release
parentc549e75c1690dd740540d1349593983ae6dd08d9 (diff)
Particle system parenting
* Allows moving, rotating & scaling of particle simulations. * Setting in particle render options. * Changes viewed & rendered particles from global space to parent space. * Doesn't effect simulations at all.
Diffstat (limited to 'release')
-rw-r--r--release/ui/buttons_particle.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/release/ui/buttons_particle.py b/release/ui/buttons_particle.py
index 3970f706920..e03db78b7e4 100644
--- a/release/ui/buttons_particle.py
+++ b/release/ui/buttons_particle.py
@@ -288,7 +288,9 @@ class PARTICLE_PT_render(ParticleButtonsPanel):
psys = context.particle_system
part = psys.settings
- layout.itemR(part, "material")
+ row = layout.row()
+ row.itemR(part, "material")
+ row.itemR(psys, "parent");
split = layout.split()