Added some Alert methods to Scene , and a console command handler. So from the console to send alerts use : alert general <message> , for a instance wide message , or use alert firstname secondname <message> to send a alert to one user. (TODO: add region wide messages).

This commit is contained in:
MW
2007-07-19 10:44:19 +00:00
parent e348aaa3a5
commit 0b6e332e16
10 changed files with 100 additions and 508 deletions

View File

@@ -225,7 +225,7 @@ namespace OpenSim.Region.Environment.Scenes
#region Roation
public void UpdateGroupRotation(LLQuaternion rot)
{
this.m_rootPart.RotationOffset = new LLQuaternion(rot.X, rot.Y, rot.Z, rot.W);
this.m_rootPart.UpdateRotation(rot);
}
/// <summary>
@@ -233,9 +233,9 @@ namespace OpenSim.Region.Environment.Scenes
/// </summary>
/// <param name="pos"></param>
/// <param name="rot"></param>
public void UpdateGroupMouseRotation(LLVector3 pos, LLQuaternion rot)
public void UpdateGroupRotation(LLVector3 pos, LLQuaternion rot)
{
this.m_rootPart.RotationOffset = new LLQuaternion(rot.X, rot.Y, rot.Z, rot.W);
this.m_rootPart.UpdateRotation(rot);
this.m_pos = pos;
}