aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Animation
diff options
context:
space:
mode:
authorTeravus Ovares (Dan Olivares)2009-11-30 14:03:20 -0500
committerTeravus Ovares (Dan Olivares)2009-11-30 14:03:20 -0500
commit83694e557812613bc6325cb6676625e5fa02b232 (patch)
treec886b03e2f4434f0bb03c269b29c81f9ee718316 /OpenSim/Region/Framework/Scenes/Animation
parent* Modified ScenePresence to use the Util version of the EnvironmentTickCount ... (diff)
downloadopensim-SC_OLD-83694e557812613bc6325cb6676625e5fa02b232.zip
opensim-SC_OLD-83694e557812613bc6325cb6676625e5fa02b232.tar.gz
opensim-SC_OLD-83694e557812613bc6325cb6676625e5fa02b232.tar.bz2
opensim-SC_OLD-83694e557812613bc6325cb6676625e5fa02b232.tar.xz
* Add a close method to the ScenePresenceAnimator that dereferences the class variables and make the ScenePresence Close method call it.
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Animation')
-rw-r--r--OpenSim/Region/Framework/Scenes/Animation/ScenePresenceAnimator.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Animation/ScenePresenceAnimator.cs b/OpenSim/Region/Framework/Scenes/Animation/ScenePresenceAnimator.cs
index b37249d..bbd445d 100644
--- a/OpenSim/Region/Framework/Scenes/Animation/ScenePresenceAnimator.cs
+++ b/OpenSim/Region/Framework/Scenes/Animation/ScenePresenceAnimator.cs
@@ -443,5 +443,11 @@ namespace OpenSim.Region.Framework.Scenes.Animation
443 443
444 SendAnimPack(animIDs, sequenceNums, objectIDs); 444 SendAnimPack(animIDs, sequenceNums, objectIDs);
445 } 445 }
446
447 public void Close()
448 {
449 m_animations = null;
450 m_scenePresence = null;
451 }
446 } 452 }
447} \ No newline at end of file 453} \ No newline at end of file