diff options
Added RemoveAvatar() method to physics plugins, should be called on log out (needs doing) and when downgrading a client to a child-avatar (should be working)
Diffstat (limited to 'OpenSim.Physics/PhysXPlugin/PhysXPlugin.cs')
-rw-r--r-- | OpenSim.Physics/PhysXPlugin/PhysXPlugin.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim.Physics/PhysXPlugin/PhysXPlugin.cs b/OpenSim.Physics/PhysXPlugin/PhysXPlugin.cs index 10e92fe..dff1ee2 100644 --- a/OpenSim.Physics/PhysXPlugin/PhysXPlugin.cs +++ b/OpenSim.Physics/PhysXPlugin/PhysXPlugin.cs | |||
@@ -121,6 +121,11 @@ namespace OpenSim.Physics.PhysXPlugin | |||
121 | _characters.Add(act); | 121 | _characters.Add(act); |
122 | return act; | 122 | return act; |
123 | } | 123 | } |
124 | |||
125 | public override void RemoveAvatar(PhysicsActor actor) | ||
126 | { | ||
127 | |||
128 | } | ||
124 | 129 | ||
125 | public override PhysicsActor AddPrim(PhysicsVector position, PhysicsVector size) | 130 | public override PhysicsActor AddPrim(PhysicsVector position, PhysicsVector size) |
126 | { | 131 | { |