aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneGraph.cs
diff options
context:
space:
mode:
authorMelanie2012-03-20 18:07:24 +0100
committerMelanie2012-03-20 18:07:24 +0100
commit70c0d6cf0b4fe101cc02e46ffc38417fa62ff245 (patch)
treec9c90629247817fbf95974671b3b448196a56d85 /OpenSim/Region/Framework/Scenes/SceneGraph.cs
parentCover the case where prims are loaded and ParentGroup is not yet set (diff)
parent add some more notifications about changes on physical parameters ( still inc... (diff)
downloadopensim-SC-70c0d6cf0b4fe101cc02e46ffc38417fa62ff245.zip
opensim-SC-70c0d6cf0b4fe101cc02e46ffc38417fa62ff245.tar.gz
opensim-SC-70c0d6cf0b4fe101cc02e46ffc38417fa62ff245.tar.bz2
opensim-SC-70c0d6cf0b4fe101cc02e46ffc38417fa62ff245.tar.xz
Merge branch 'ubitwork'
Conflicts: OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneGraph.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneGraph.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneGraph.cs b/OpenSim/Region/Framework/Scenes/SceneGraph.cs
index 18069af..ccc3f32 100644
--- a/OpenSim/Region/Framework/Scenes/SceneGraph.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneGraph.cs
@@ -1521,7 +1521,11 @@ namespace OpenSim.Region.Framework.Scenes
1521 { 1521 {
1522 SceneObjectPart part = GetSceneObjectPart(localID); 1522 SceneObjectPart part = GetSceneObjectPart(localID);
1523 if (part != null) 1523 if (part != null)
1524 {
1524 part.UpdateExtraPhysics(PhysData); 1525 part.UpdateExtraPhysics(PhysData);
1526 if (part.UpdatePhysRequired)
1527 remoteClient.SendPartPhysicsProprieties(part);
1528 }
1525 } 1529 }
1526 } 1530 }
1527 } 1531 }