Add TriggerScenePresenceUpdated events when an animation is added

or removed. Shouldn't impact anyone as only DSG seems to use
OnScenePresenceUpdated event.
Some minor format changes to AnimationSet's ToString().
This commit is contained in:
Robert Adams
2013-06-11 17:18:12 -07:00
parent 135e10ba09
commit 7556a0f699
4 changed files with 11 additions and 6 deletions

View File

@@ -125,11 +125,10 @@ namespace OpenSim.Framework
Animation other = obj as Animation;
if (other != null)
{
return (other.AnimID == this.AnimID
return (other.AnimID.Equals(this.AnimID)
&& other.SequenceNum == this.SequenceNum
&& other.ObjectID == this.ObjectID);
&& other.ObjectID.Equals(this.ObjectID) );
}
return base.Equals(obj);
}