Tiny addition to boids functionality: pitch value

* Controls maximum rotation around side vector (as opposed to banking, which controls rotation around forward vector)
This commit is contained in:
Janne Karhu
2010-09-16 20:06:10 +00:00
parent 43d2d0c6ea
commit e7a393d2e1
5 changed files with 20 additions and 3 deletions

View File

@@ -512,6 +512,7 @@ class PARTICLE_PT_physics(ParticleButtonsPanel, bpy.types.Panel):
col = row.column()
col.label(text="Misc:")
col.prop(boids, "bank", slider=True)
col.prop(boids, "pitch", slider=True)
col.prop(boids, "height", slider=True)
if part.physics_type == 'KEYED' or part.physics_type == 'BOIDS' or part.physics_type == 'FLUID':