diff options
author | Sean Dague | 2008-05-07 19:48:34 +0000 |
---|---|---|
committer | Sean Dague | 2008-05-07 19:48:34 +0000 |
commit | 02b1d908e8f61b053972deceeadf9e93ee3ba574 (patch) | |
tree | 6ddaf2a1683a28fb7531c4123ceba5886159919f /OpenSim | |
parent | seriously hope this gives us rotation and rotational velocity (diff) | |
download | opensim-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')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 4 |
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); |