[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [32319] trunk/blender/release/scripts/ui/ properties_object.py: "Fix" for [#24115] Offset animation on object with particules system doesn't work like 2.49

Janne Karhu jhkarh at gmail.com
Tue Oct 5 12:45:54 CEST 2010


Revision: 32319
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=32319
Author:   jhk
Date:     2010-10-05 12:45:54 +0200 (Tue, 05 Oct 2010)

Log Message:
-----------
"Fix" for [#24115] Offset animation on object with particules system doesn't work like 2.49
* Object time offset is not supported for particles anymore, something that enables similar functionality will have to be coded later.

Modified Paths:
--------------
    trunk/blender/release/scripts/ui/properties_object.py

Modified: trunk/blender/release/scripts/ui/properties_object.py
===================================================================
--- trunk/blender/release/scripts/ui/properties_object.py	2010-10-05 10:23:25 UTC (rev 32318)
+++ trunk/blender/release/scripts/ui/properties_object.py	2010-10-05 10:45:54 UTC (rev 32319)
@@ -251,9 +251,6 @@
         col.label(text="Time Offset:")
         col.prop(ob, "use_time_offset_edit", text="Edit")
         row = col.row()
-        row.prop(ob, "use_time_offset_particle", text="Particle")
-        row.active = bool(ob.particle_systems)
-        row = col.row()
         row.prop(ob, "use_time_offset_parent", text="Parent")
         row.active = (ob.parent is not None)
         row = col.row()





More information about the Bf-blender-cvs mailing list