aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes
diff options
context:
space:
mode:
authorJeff Ames2007-12-13 07:10:32 +0000
committerJeff Ames2007-12-13 07:10:32 +0000
commit83ca8bd178c397c58d13e2a7fd089f2d2998784b (patch)
treeacdbc9926d69b84707c5762e38a248b303ead43f /OpenSim/Region/Environment/Scenes
parentset svn:eol-style (diff)
downloadopensim-SC_OLD-83ca8bd178c397c58d13e2a7fd089f2d2998784b.zip
opensim-SC_OLD-83ca8bd178c397c58d13e2a7fd089f2d2998784b.tar.gz
opensim-SC_OLD-83ca8bd178c397c58d13e2a7fd089f2d2998784b.tar.bz2
opensim-SC_OLD-83ca8bd178c397c58d13e2a7fd089f2d2998784b.tar.xz
Fix for #176 (... doesn't appear in chat bubbles). This also gets the viewer to handle starting/stopping of the typing animation.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Scenes/ScenePresence.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/OpenSim/Region/Environment/Scenes/ScenePresence.cs b/OpenSim/Region/Environment/Scenes/ScenePresence.cs
index 512eed0..3460e8f 100644
--- a/OpenSim/Region/Environment/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Environment/Scenes/ScenePresence.cs
@@ -964,23 +964,6 @@ namespace OpenSim.Region.Environment.Scenes
964 m_forcesList.Add(newVelocity); 964 m_forcesList.Add(newVelocity);
965 } 965 }
966 966
967 /// <summary>
968 /// Sets whether or not the agent is typing.
969 /// </summary>
970 public void setTyping(bool typing)
971 {
972 if (m_isChildAgent)
973 {
974 MainLog.Instance.Warn("setTyping called on child agent");
975 return;
976 }
977
978 if (typing)
979 AddAnimation(Animations.AnimsLLUUID["TYPE"], 1);
980 else
981 RemoveAnimation(Animations.AnimsLLUUID["TYPE"]);
982 }
983
984 #endregion 967 #endregion
985 968
986 #region Overridden Methods 969 #region Overridden Methods