diff options
author | MW | 2008-07-23 11:07:59 +0000 |
---|---|---|
committer | MW | 2008-07-23 11:07:59 +0000 |
commit | 9b51bb545ecf07ad1b1b8188d62d4b4a03bc3fff (patch) | |
tree | b92da6a4195eb7948d0ab5b255b6479388244e8b /OpenSim/Framework | |
parent | The new secure inventory server mode (in r5590) can now be disabled from Open... (diff) | |
download | opensim-SC-9b51bb545ecf07ad1b1b8188d62d4b4a03bc3fff.zip opensim-SC-9b51bb545ecf07ad1b1b8188d62d4b4a03bc3fff.tar.gz opensim-SC-9b51bb545ecf07ad1b1b8188d62d4b4a03bc3fff.tar.bz2 opensim-SC-9b51bb545ecf07ad1b1b8188d62d4b4a03bc3fff.tar.xz |
Changed it so the avatar's rotation is now sent as part of a full avatar update.
This should fix the wrong rotation on existing sitting avatar when logging in bug.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index b1f62f1..a97ce5e 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -545,7 +545,7 @@ namespace OpenSim.Framework | |||
545 | void SendPayPrice(LLUUID objectID, int[] payPrice); | 545 | void SendPayPrice(LLUUID objectID, int[] payPrice); |
546 | 546 | ||
547 | void SendAvatarData(ulong regionHandle, string firstName, string lastName, LLUUID avatarID, uint avatarLocalID, | 547 | void SendAvatarData(ulong regionHandle, string firstName, string lastName, LLUUID avatarID, uint avatarLocalID, |
548 | LLVector3 Pos, byte[] textureEntry, uint parentID); | 548 | LLVector3 Pos, byte[] textureEntry, uint parentID, LLQuaternion rotation); |
549 | 549 | ||
550 | void SendAvatarTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, LLVector3 position, | 550 | void SendAvatarTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, LLVector3 position, |
551 | LLVector3 velocity, LLQuaternion rotation); | 551 | LLVector3 velocity, LLQuaternion rotation); |