mirror of
https://github.com/opensim/opensim.git
synced 2026-08-14 17:55:39 +08:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user