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:
authorJonathan Smith <j.jaydez@gmail.com>2010-04-30 12:45:04 +0400
committerJonathan Smith <j.jaydez@gmail.com>2010-04-30 12:45:04 +0400
commit85de2222666bc21b7d22f8b5709ccffc17ba40d8 (patch)
treea453c4290c36406e7e80f1c4ee4a49f7d2961637 /object_cloud_gen.py
parent5329139443bf48c28204bcb9fe1bd1e2ccd6597c (diff)
Renamed start to frame_start and end to frame_end for generating particles, so that the cloud gen script works again.
Diffstat (limited to 'object_cloud_gen.py')
-rw-r--r--object_cloud_gen.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/object_cloud_gen.py b/object_cloud_gen.py
index 1fa76fc7..1d67c3e2 100644
--- a/object_cloud_gen.py
+++ b/object_cloud_gen.py
@@ -470,8 +470,8 @@ class GenerateCloud(bpy.types.Operator):
#Particle settings setting it up!
cloudParticles = cloud.active_particle_system
cloudParticles.name = "CloudParticles"
- cloudParticles.settings.start = 0
- cloudParticles.settings.end = 0
+ cloudParticles.settings.frame_start = 0
+ cloudParticles.settings.frame_end = 0
cloudParticles.settings.emit_from = 'VOLUME'
cloudParticles.settings.draw_as = 'DOT'
cloudParticles.settings.ren_as = 'NONE'
@@ -640,4 +640,4 @@ class GenerateCloud(bpy.types.Operator):
bpy.types.register(GenerateCloud)
if __name__ == "__main__":
- bpy.ops.cloud.generate_cloud() \ No newline at end of file
+ bpy.ops.cloud.generate_cloud()