diff options
Diffstat (limited to 'OpenSim/Region/ClientStack/ClientView.API.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/ClientView.API.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/ClientView.API.cs b/OpenSim/Region/ClientStack/ClientView.API.cs index 40e0021..6de6af6 100644 --- a/OpenSim/Region/ClientStack/ClientView.API.cs +++ b/OpenSim/Region/ClientStack/ClientView.API.cs | |||
@@ -64,6 +64,7 @@ namespace OpenSim.Region.ClientStack | |||
64 | public event UpdatePrimTexture OnUpdatePrimTexture; | 64 | public event UpdatePrimTexture OnUpdatePrimTexture; |
65 | public event UpdateVector OnUpdatePrimPosition; | 65 | public event UpdateVector OnUpdatePrimPosition; |
66 | public event UpdatePrimRotation OnUpdatePrimRotation; | 66 | public event UpdatePrimRotation OnUpdatePrimRotation; |
67 | public event UpdatePrimGroupRotation OnUpdatePrimGroupRotation; | ||
67 | public event UpdateVector OnUpdatePrimScale; | 68 | public event UpdateVector OnUpdatePrimScale; |
68 | public event StatusChange OnChildAgentStatus; | 69 | public event StatusChange OnChildAgentStatus; |
69 | public event GenericCall2 OnStopMovement; | 70 | public event GenericCall2 OnStopMovement; |
@@ -644,7 +645,7 @@ namespace OpenSim.Region.ClientStack | |||
644 | byte[] pb = pos.GetBytes(); | 645 | byte[] pb = pos.GetBytes(); |
645 | Array.Copy(pb, 0, outPacket.ObjectData[0].ObjectData, 0, pb.Length); | 646 | Array.Copy(pb, 0, outPacket.ObjectData[0].ObjectData, 0, pb.Length); |
646 | byte[] rot = rotation.GetBytes(); | 647 | byte[] rot = rotation.GetBytes(); |
647 | Array.Copy(rot, 0, outPacket.ObjectData[0].ObjectData, 48, rot.Length); | 648 | Array.Copy(rot, 0, outPacket.ObjectData[0].ObjectData, 36, rot.Length); |
648 | OutPacket(outPacket); | 649 | OutPacket(outPacket); |
649 | } | 650 | } |
650 | 651 | ||