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:
authorThomas Dinges <blender@dingto.org>2010-09-11 02:14:09 +0400
committerThomas Dinges <blender@dingto.org>2010-09-11 02:14:09 +0400
commitf1133b1e990a80a832348758e32140b10ce7f411 (patch)
treebaec4b584cf9143d4144e0f0c1fe5f38926cd696 /object_cloud_gen.py
parent25d256455d7bb95f7d2389c23037f5fd2bb2f2c8 (diff)
Fix for API changes.
Diffstat (limited to 'object_cloud_gen.py')
-rw-r--r--object_cloud_gen.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/object_cloud_gen.py b/object_cloud_gen.py
index 4ddc487f..9d9ee1e2 100644
--- a/object_cloud_gen.py
+++ b/object_cloud_gen.py
@@ -304,12 +304,12 @@ cloudTypes.append(("2","Cirrus","Generate Cirrus_wispy Cloud"))
#cloudTypes.append(("3","Nimbus","Generate Nimbus Cloud"))
-bpy.types.Scene.BoolProperty( attr="cloudparticles",
+bpy.types.Scene.cloudparticles = BoolProperty(
name="Particles",
description="Generate Cloud as Particle System",
default=False)
-bpy.types.Scene.EnumProperty( attr="cloud_type",
+bpy.types.Scene.cloud_type = EnumProperty(
name="Type",
description="Select the type of cloud to create with material settings",
items = cloudTypes, default = '0')