delete keyframes on temporary backup group
parent
525322efa2
commit
b07ea475bf
|
@ -2202,8 +2202,16 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
backup_group.ForEachPart(delegate(SceneObjectPart part)
|
backup_group.ForEachPart(delegate(SceneObjectPart part)
|
||||||
{
|
{
|
||||||
part.Inventory.ProcessInventoryBackup(datastore);
|
part.Inventory.ProcessInventoryBackup(datastore);
|
||||||
|
|
||||||
|
// take the change to delete things
|
||||||
|
if(part.KeyframeMotion != null)
|
||||||
|
{
|
||||||
|
part.KeyframeMotion.Delete();
|
||||||
|
part.KeyframeMotion = null;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
backup_group = null;
|
backup_group = null;
|
||||||
}
|
}
|
||||||
// else
|
// else
|
||||||
|
|
Loading…
Reference in New Issue