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:
Diffstat (limited to 'release/ui/buttons_particle.py')
-rw-r--r--release/ui/buttons_particle.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/release/ui/buttons_particle.py b/release/ui/buttons_particle.py
new file mode 100644
index 00000000000..52e20b03538
--- /dev/null
+++ b/release/ui/buttons_particle.py
@@ -0,0 +1,26 @@
+
+import bpy
+
+class ParticleButtonsPanel(bpy.types.Panel):
+ __space_type__ = "BUTTONS_WINDOW"
+ __region_type__ = "WINDOW"
+ __context__ = "particle"
+
+ def poll(self, context):
+ ob = context.active_object
+ return (ob and ob.active_particle_system)
+
+class PARTICLE_PT_particles(ParticleButtonsPanel):
+ __idname__= "PARTICLE_PT_particles"
+ __label__ = "Particles"
+
+ def draw(self, context):
+ layout = self.layout
+
+ psys = context.active_object.active_particle_system
+ part = psys.settings
+
+ layout.itemR(part, "amount")
+
+bpy.types.register(PARTICLE_PT_particles)
+