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>2011-02-13 16:50:19 +0300
committerJanne Karhu <jhkarh@gmail.com>2011-02-13 16:50:19 +0300
commit7b4c4183f38a423f8129af132ef676771fb79459 (patch)
tree9e9a2ff67debfa434b062004f76f8f81d2cf8052 /release
parentc68a59175e8284a3475886152ecb886c6fae0f39 (diff)
Small addition to particle grid distribution:
* New option to distribute particles in a hexagonal grid. * This is much more stable for fluids than normal grid distribution and looks quite nice otherwise too :) * Also some small scale code cleanup of grid distribution code.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/properties_particle.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/ui/properties_particle.py b/release/scripts/ui/properties_particle.py
index ec7428d2860..4b470831716 100644
--- a/release/scripts/ui/properties_particle.py
+++ b/release/scripts/ui/properties_particle.py
@@ -197,6 +197,7 @@ class PARTICLE_PT_emission(ParticleButtonsPanel, bpy.types.Panel):
row = layout.row()
if part.distribution == 'GRID':
row.prop(part, "invert_grid")
+ row.prop(part, "hexagonal_grid")
else:
row.prop(part, "use_emit_random")
row.prop(part, "use_even_distribution")