"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.
This commit is contained in:
2010-10-05 10:45:54 +00:00
parent 459cf92bf4
commit 9c91affd6f

View File

@@ -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()