[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [1010] trunk/py/scripts/addons/ object_cloud_gen.py: Fix for API changes.

Thomas Dinges dingto at gmx.de
Sat Sep 11 00:14:09 CEST 2010


Revision: 1010
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-extensions&revision=1010
Author:   dingto
Date:     2010-09-11 00:14:09 +0200 (Sat, 11 Sep 2010)

Log Message:
-----------
Fix for API changes. 

Modified Paths:
--------------
    trunk/py/scripts/addons/object_cloud_gen.py

Modified: trunk/py/scripts/addons/object_cloud_gen.py
===================================================================
--- trunk/py/scripts/addons/object_cloud_gen.py	2010-09-10 20:53:27 UTC (rev 1009)
+++ trunk/py/scripts/addons/object_cloud_gen.py	2010-09-10 22:14:09 UTC (rev 1010)
@@ -304,12 +304,12 @@
 #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')




More information about the Bf-extensions-cvs mailing list