diff options
author | Teravus Ovares | 2008-04-25 09:47:21 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-04-25 09:47:21 +0000 |
commit | 421730d972dca49ffd16b7dccd800b51ba5c20ac (patch) | |
tree | 75d76fe90487e9884e119e0c7ff0a69cff953d4e /OpenSim/Region/Environment/Scenes/SceneObjectPart.cs | |
parent | * Implements llTarget, llTargetRemove, at_target(), not_at_target() (diff) | |
download | opensim-SC_OLD-421730d972dca49ffd16b7dccd800b51ba5c20ac.zip opensim-SC_OLD-421730d972dca49ffd16b7dccd800b51ba5c20ac.tar.gz opensim-SC_OLD-421730d972dca49ffd16b7dccd800b51ba5c20ac.tar.bz2 opensim-SC_OLD-421730d972dca49ffd16b7dccd800b51ba5c20ac.tar.xz |
* Used thomas' patch m884 as an example to make HUD attachments work. While I didn't use the patch directly, I did use the following from the patch to convert the uint value into the byte: (byte)((m_attachmentPoint % 16) * 16 + (m_attachmentPoint / 16))
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneObjectPart.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneObjectPart.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs index f345dab..5c8e109 100644 --- a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs | |||
@@ -2288,7 +2288,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
2288 | LLQuaternion mRot = RotationOffset; | 2288 | LLQuaternion mRot = RotationOffset; |
2289 | if (m_IsAttachment) | 2289 | if (m_IsAttachment) |
2290 | { | 2290 | { |
2291 | remoteClient.SendPrimTerseUpdate(m_regionHandle, (ushort)(m_parentGroup.GetTimeDilation() * (float)ushort.MaxValue), LocalId, lPos, mRot, (byte)(((byte)m_attachmentPoint) << 4)); | 2291 | remoteClient.SendPrimTerseUpdate(m_regionHandle, (ushort)(m_parentGroup.GetTimeDilation() * (float)ushort.MaxValue), LocalId, lPos, mRot, (byte)((m_attachmentPoint % 16) * 16 + (m_attachmentPoint / 16))); |
2292 | } | 2292 | } |
2293 | else | 2293 | else |
2294 | { | 2294 | { |