From 9c91affd6f91b6c2db2af308bd5c103c9a466acd Mon Sep 17 00:00:00 2001 From: Janne Karhu Date: Tue, 5 Oct 2010 10:45:54 +0000 Subject: "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. --- release/scripts/ui/properties_object.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/release/scripts/ui/properties_object.py b/release/scripts/ui/properties_object.py index dd242723cac..65f1cc2d929 100644 --- a/release/scripts/ui/properties_object.py +++ b/release/scripts/ui/properties_object.py @@ -251,9 +251,6 @@ class OBJECT_PT_animation(ObjectButtonsPanel, bpy.types.Panel): 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() -- cgit v1.2.3