Fix for #176 (... doesn't appear in chat bubbles). This also gets the viewer to handle starting/stopping of the typing animation.

This commit is contained in:
Jeff Ames
2007-12-13 07:10:32 +00:00
parent 525139a161
commit 83ca8bd178
3 changed files with 27 additions and 76 deletions

View File

@@ -964,23 +964,6 @@ namespace OpenSim.Region.Environment.Scenes
m_forcesList.Add(newVelocity);
}
/// <summary>
/// Sets whether or not the agent is typing.
/// </summary>
public void setTyping(bool typing)
{
if (m_isChildAgent)
{
MainLog.Instance.Warn("setTyping called on child agent");
return;
}
if (typing)
AddAnimation(Animations.AnimsLLUUID["TYPE"], 1);
else
RemoveAnimation(Animations.AnimsLLUUID["TYPE"]);
}
#endregion
#region Overridden Methods