diff options
author | Melanie Thielker | 2009-04-30 11:58:23 +0000 |
---|---|---|
committer | Melanie Thielker | 2009-04-30 11:58:23 +0000 |
commit | 334738fca96498f31842f42db974bc46da35d94a (patch) | |
tree | 95c8cc63ca624989f0dcb9cb1cffc9907c6fd3a6 /OpenSim/Client | |
parent | Thank you kindly, MCortez for a patch that: (diff) | |
download | opensim-SC_OLD-334738fca96498f31842f42db974bc46da35d94a.zip opensim-SC_OLD-334738fca96498f31842f42db974bc46da35d94a.tar.gz opensim-SC_OLD-334738fca96498f31842f42db974bc46da35d94a.tar.bz2 opensim-SC_OLD-334738fca96498f31842f42db974bc46da35d94a.tar.xz |
Thank you, mpallari, for a patch that increses efficiency by combining
avatar updates into a single packet.
Applied with changes.
Fixes Mantis #3136
Diffstat (limited to 'OpenSim/Client')
-rw-r--r-- | OpenSim/Client/MXP/ClientStack/MXPClientView.cs | 2 | ||||
-rw-r--r-- | OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Client/MXP/ClientStack/MXPClientView.cs b/OpenSim/Client/MXP/ClientStack/MXPClientView.cs index 52c8072..d8e2711 100644 --- a/OpenSim/Client/MXP/ClientStack/MXPClientView.cs +++ b/OpenSim/Client/MXP/ClientStack/MXPClientView.cs | |||
@@ -1001,7 +1001,7 @@ namespace OpenSim.Client.MXP.ClientStack | |||
1001 | MXPSendAvatarData(firstName + " " + lastName, ownerID, UUID.Zero, avatarID, avatarLocalID, position, rotation); | 1001 | MXPSendAvatarData(firstName + " " + lastName, ownerID, UUID.Zero, avatarID, avatarLocalID, position, rotation); |
1002 | } | 1002 | } |
1003 | 1003 | ||
1004 | public void SendAvatarTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, Vector3 position, Vector3 velocity, Quaternion rotation) | 1004 | public void SendAvatarTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, Vector3 position, Vector3 velocity, Quaternion rotation, UUID uuid) |
1005 | { | 1005 | { |
1006 | MovementEventMessage me = new MovementEventMessage(); | 1006 | MovementEventMessage me = new MovementEventMessage(); |
1007 | me.ObjectIndex = localID; | 1007 | me.ObjectIndex = localID; |
diff --git a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs index 314bbe4..c37bc06 100644 --- a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs +++ b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs | |||
@@ -558,7 +558,7 @@ namespace OpenSim.Client.VWoHTTP.ClientStack | |||
558 | throw new System.NotImplementedException(); | 558 | throw new System.NotImplementedException(); |
559 | } | 559 | } |
560 | 560 | ||
561 | public void SendAvatarTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, Vector3 position, Vector3 velocity, Quaternion rotation) | 561 | public void SendAvatarTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, Vector3 position, Vector3 velocity, Quaternion rotation, UUID uuid) |
562 | { | 562 | { |
563 | throw new System.NotImplementedException(); | 563 | throw new System.NotImplementedException(); |
564 | } | 564 | } |