From f1133b1e990a80a832348758e32140b10ce7f411 Mon Sep 17 00:00:00 2001 From: Thomas Dinges <blender@dingto.org> Date: Fri, 10 Sep 2010 22:14:09 +0000 Subject: [PATCH] Fix for API changes. --- object_cloud_gen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/object_cloud_gen.py b/object_cloud_gen.py index 4ddc487f6..9d9ee1e2d 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') -- GitLab