aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
diff options
context:
space:
mode:
authorSean Dague2008-05-07 19:48:34 +0000
committerSean Dague2008-05-07 19:48:34 +0000
commit02b1d908e8f61b053972deceeadf9e93ee3ba574 (patch)
tree6ddaf2a1683a28fb7531c4123ceba5886159919f /OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
parentseriously hope this gives us rotation and rotational velocity (diff)
downloadopensim-SC_OLD-02b1d908e8f61b053972deceeadf9e93ee3ba574.zip
opensim-SC_OLD-02b1d908e8f61b053972deceeadf9e93ee3ba574.tar.gz
opensim-SC_OLD-02b1d908e8f61b053972deceeadf9e93ee3ba574.tar.bz2
opensim-SC_OLD-02b1d908e8f61b053972deceeadf9e93ee3ba574.tar.xz
enable velocity on our full update, as I think I know why
this didn't previously work
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index 7502a4b..7587f44 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -2125,8 +2125,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
2125 byte[] pb = pos.GetBytes(); 2125 byte[] pb = pos.GetBytes();
2126 Array.Copy(pb, 0, outPacket.ObjectData[0].ObjectData, 0, pb.Length); 2126 Array.Copy(pb, 0, outPacket.ObjectData[0].ObjectData, 0, pb.Length);
2127 2127
2128 // byte[] vel = velocity.GetBytes(); 2128 byte[] vel = velocity.GetBytes();
2129 // Array.Copy(vel, 0, outPacket.ObjectData[0].ObjectData, 12, vel.Length); 2129 Array.Copy(vel, 0, outPacket.ObjectData[0].ObjectData, pb.Length, vel.Length);
2130 2130
2131 byte[] rot = rotation.GetBytes(); 2131 byte[] rot = rotation.GetBytes();
2132 Array.Copy(rot, 0, outPacket.ObjectData[0].ObjectData, 36, rot.Length); 2132 Array.Copy(rot, 0, outPacket.ObjectData[0].ObjectData, 36, rot.Length);