diff --git a/object_cloud_gen.py b/object_cloud_gen.py index a9a79752c607e58445ece91abecf3dba727d3e7f..149fa5547464f5434841d9646d0321cbc5d9623d 100644 --- a/object_cloud_gen.py +++ b/object_cloud_gen.py @@ -21,10 +21,10 @@ bl_info = { "author": "Nick Keeline(nrk)", "version": (1,0), "blender": (2, 5, 7), - "api": 35622, + "api": 35853, "location": "View3D > Tool Shelf > Cloud Generator Panel", "description": "Creates Volumetric Clouds", - "warning": "Script returns errors", + "warning": "", "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/"\ "Scripts/Object/Cloud_Gen", "tracker_url": "https://projects.blender.org/tracker/index.php?"\ @@ -516,7 +516,7 @@ class GenerateCloud(bpy.types.Operator): #Don't subdivide object or smooth if smoothing box not checked. if scene.cloudsmoothing: bpy.ops.mesh.subdivide(number_cuts=2, fractal=0, smoothness=1) - bpy.ops.object.location_apply() + # bpy.ops.object.location_apply() bpy.ops.mesh.vertices_smooth(repeat=20) bpy.ops.mesh.tris_convert_to_quads() bpy.ops.mesh.faces_shade_smooth()