added ability to update group position
parent
4b03834f8d
commit
dddf61953b
|
@ -603,6 +603,13 @@ namespace OpenSim.Region.Environment.Scenes
|
||||||
this.OffsetPosition = newPos;
|
this.OffsetPosition = newPos;
|
||||||
ScheduleTerseUpdate();
|
ScheduleTerseUpdate();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void UpdateGroupPosition(LLVector3 pos)
|
||||||
|
{
|
||||||
|
LLVector3 newPos = new LLVector3(pos.X, pos.Y, pos.Z);
|
||||||
|
this.GroupPosition = newPos;
|
||||||
|
ScheduleTerseUpdate();
|
||||||
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region rotation
|
#region rotation
|
||||||
|
|
Loading…
Reference in New Issue