aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorRobert Adams2013-08-22 09:05:26 -0700
committerJustin Clark-Casey (justincc)2013-09-20 21:03:25 +0100
commit0e4a06edf985dfe795e27010e7bbdc1a0a336312 (patch)
treef267b3b4920d1a70703e240561f48dd6943e9e23 /OpenSim/Region
parentBulletSim: add position and rotation update for child prim physics update eve... (diff)
downloadopensim-SC_OLD-0e4a06edf985dfe795e27010e7bbdc1a0a336312.zip
opensim-SC_OLD-0e4a06edf985dfe795e27010e7bbdc1a0a336312.tar.gz
opensim-SC_OLD-0e4a06edf985dfe795e27010e7bbdc1a0a336312.tar.bz2
opensim-SC_OLD-0e4a06edf985dfe795e27010e7bbdc1a0a336312.tar.xz
BulletSim: remove chatty debug message from previous commit.
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneObjectPart.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
index b30c024..b3e6b67 100644
--- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
@@ -2504,7 +2504,7 @@ namespace OpenSim.Region.Framework.Scenes
2504 2504
2505 if (pa != null && ParentID != 0 && ParentGroup != null) 2505 if (pa != null && ParentID != 0 && ParentGroup != null)
2506 { 2506 {
2507 // RA: Special case where a child object is requesting property updates. 2507 // Special case where a child object is requesting property updates.
2508 // This happens when linksets are modified to use flexible links rather than 2508 // This happens when linksets are modified to use flexible links rather than
2509 // the default links. 2509 // the default links.
2510 // The simulator code presumes that child parts are only modified by scripts 2510 // The simulator code presumes that child parts are only modified by scripts
@@ -2518,8 +2518,8 @@ namespace OpenSim.Region.Framework.Scenes
2518 Quaternion invRootRotation = Quaternion.Normalize(Quaternion.Inverse(ParentGroup.RootPart.RotationOffset)); 2518 Quaternion invRootRotation = Quaternion.Normalize(Quaternion.Inverse(ParentGroup.RootPart.RotationOffset));
2519 m_offsetPosition = pa.Position - m_groupPosition; 2519 m_offsetPosition = pa.Position - m_groupPosition;
2520 RotationOffset = pa.Orientation * invRootRotation; 2520 RotationOffset = pa.Orientation * invRootRotation;
2521 m_log.DebugFormat("{0} PhysicsRequestingTerseUpdate child: pos={1}, rot={2}, offPos={3}, offRot={4}", 2521 // m_log.DebugFormat("{0} PhysicsRequestingTerseUpdate child: pos={1}, rot={2}, offPos={3}, offRot={4}",
2522 "[SCENE OBJECT PART]", pa.Position, pa.Orientation, m_offsetPosition, RotationOffset); 2522 // "[SCENE OBJECT PART]", pa.Position, pa.Orientation, m_offsetPosition, RotationOffset);
2523 } 2523 }
2524 2524
2525 ScheduleTerseUpdate(); 2525 ScheduleTerseUpdate();