Skip to content
Snippets Groups Projects
Commit f1133b1e authored by Thomas Dinges's avatar Thomas Dinges
Browse files

Fix for API changes.

parent 25d25645
No related branches found
No related tags found
No related merge requests found
...@@ -304,12 +304,12 @@ cloudTypes.append(("2","Cirrus","Generate Cirrus_wispy Cloud")) ...@@ -304,12 +304,12 @@ cloudTypes.append(("2","Cirrus","Generate Cirrus_wispy Cloud"))
#cloudTypes.append(("3","Nimbus","Generate Nimbus Cloud")) #cloudTypes.append(("3","Nimbus","Generate Nimbus Cloud"))
bpy.types.Scene.BoolProperty( attr="cloudparticles", bpy.types.Scene.cloudparticles = BoolProperty(
name="Particles", name="Particles",
description="Generate Cloud as Particle System", description="Generate Cloud as Particle System",
default=False) default=False)
bpy.types.Scene.EnumProperty( attr="cloud_type", bpy.types.Scene.cloud_type = EnumProperty(
name="Type", name="Type",
description="Select the type of cloud to create with material settings", description="Select the type of cloud to create with material settings",
items = cloudTypes, default = '0') items = cloudTypes, default = '0')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment