Clear OdeCharacter CollisionEventUpdate when we subscribe or unsubscribe from collision events

0.7.2-post-fixes
Justin Clark-Casey (justincc) 2011-10-25 22:46:42 +01:00
parent 127626edd8
commit 6c92b48143
1 changed files with 2 additions and 0 deletions

View File

@ -1210,11 +1210,13 @@ namespace OpenSim.Region.Physics.OdePlugin
{
m_requestedUpdateFrequency = ms;
m_eventsubscription = ms;
CollisionEventsThisFrame.Clear();
_parent_scene.AddCollisionEventReporting(this);
}
public override void UnSubscribeEvents()
{
CollisionEventsThisFrame.Clear();
_parent_scene.RemoveCollisionEventReporting(this);
m_requestedUpdateFrequency = 0;
m_eventsubscription = 0;