aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorSean Dague2008-05-07 19:44:22 +0000
committerSean Dague2008-05-07 19:44:22 +0000
commit0574355b4bb65b4483fe88d2a45252ba828e2db7 (patch)
tree1c182e40f87a97d99dc985bec048ac2e21140057 /OpenSim
parent* Other then the prim update experiments that are going on now, llTakeControl... (diff)
downloadopensim-SC_OLD-0574355b4bb65b4483fe88d2a45252ba828e2db7.zip
opensim-SC_OLD-0574355b4bb65b4483fe88d2a45252ba828e2db7.tar.gz
opensim-SC_OLD-0574355b4bb65b4483fe88d2a45252ba828e2db7.tar.bz2
opensim-SC_OLD-0574355b4bb65b4483fe88d2a45252ba828e2db7.tar.xz
seriously hope this gives us rotation and rotational velocity
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index 8078491..7502a4b 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -2132,7 +2132,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
2132 Array.Copy(rot, 0, outPacket.ObjectData[0].ObjectData, 36, rot.Length); 2132 Array.Copy(rot, 0, outPacket.ObjectData[0].ObjectData, 36, rot.Length);
2133 2133
2134 byte[] rvel = rotational_velocity.GetBytes(); 2134 byte[] rvel = rotational_velocity.GetBytes();
2135 Array.Copy(rvel, 0, outPacket.ObjectData[0].ObjectData, 44, rvel.Length); 2135 Array.Copy(rvel, 0, outPacket.ObjectData[0].ObjectData, 36 + rot.Length, rvel.Length);
2136 2136
2137 if (textureanim.Length > 0) 2137 if (textureanim.Length > 0)
2138 { 2138 {