Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-09-13 08:44:13 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-09-13 08:44:13 +0400
commit0ebae76cfd257362a35031ea9440cb0e23c9d117 (patch)
treef425bf187028b8027e392a1242acaf4fcc1dcb13 /object_cloud_gen.py
parent950ce4d08e73486f6b15467d062e104f747a5107 (diff)
minor changes, avoid lookups on bpy.types.Scene for many settings
Diffstat (limited to 'object_cloud_gen.py')
-rw-r--r--object_cloud_gen.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/object_cloud_gen.py b/object_cloud_gen.py
index e5b79aba..406a7fa4 100644
--- a/object_cloud_gen.py
+++ b/object_cloud_gen.py
@@ -312,7 +312,8 @@ bpy.types.Scene.cloudparticles = BoolProperty(
bpy.types.Scene.cloud_type = EnumProperty(
name="Type",
description="Select the type of cloud to create with material settings",
- items = cloudTypes, default = '0')
+ items=cloudTypes, default='0')
+
class GenerateCloud(bpy.types.Operator):
bl_idname = "cloud.generate_cloud"