* This is actually the fix described the last commit.. I had commented it out to see if the problem had affected all attachments or just HUD attachments.
parent
397aa74777
commit
f9148e5fc7
|
@ -2363,7 +2363,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
// RootPart != null should shortcircuit
|
// RootPart != null should shortcircuit
|
||||||
|
|
||||||
// try to let this work as in SL...
|
// try to let this work as in SL...
|
||||||
if (m_host.ParentID == 0 ) //|| (rootPart != null && m_host.LocalId == rootPart.LocalId))
|
if (m_host.ParentID == 0 || (rootPart != null && m_host.LocalId == rootPart.LocalId))
|
||||||
{
|
{
|
||||||
// special case: If we are root, rotate complete SOG to new rotation
|
// special case: If we are root, rotate complete SOG to new rotation
|
||||||
SetRot(m_host, rot);
|
SetRot(m_host, rot);
|
||||||
|
|
Loading…
Reference in New Issue