Change the results from llGetPrimitiveParams to be the same as SL for

the prim position. This will make attached resizer scripts work like SL.
Existing resizers may be affected adversely.
This commit is contained in:
Melanie
2010-10-24 17:18:21 +02:00
parent 9a78281f82
commit 5f266fd571
2 changed files with 1 additions and 8 deletions

View File

@@ -1060,7 +1060,7 @@ namespace OpenSim.Region.Framework.Scenes
{
get {
if (IsAttachment)
return GroupPosition;
return GroupPosition + (m_offsetPosition * ParentGroup.RootPart.RotationOffset);
// return m_offsetPosition + m_groupPosition; }
return m_groupPosition + (m_offsetPosition * ParentGroup.RootPart.RotationOffset) ; } //KF: Rotation was ignored!