diff options
author | UbitUmarov | 2016-11-02 21:42:32 +0000 |
---|---|---|
committer | UbitUmarov | 2016-11-02 21:42:32 +0000 |
commit | 9480da06b971e7ffa500c33399cdb2114a39637f (patch) | |
tree | 11db75d3f5c62ec9c31bd61c876406477dc44c86 /OpenSim/Region/Framework/Scenes/SceneGraph.cs | |
parent | ignore prims with shape type none on max size check for physics (diff) | |
download | opensim-SC-9480da06b971e7ffa500c33399cdb2114a39637f.zip opensim-SC-9480da06b971e7ffa500c33399cdb2114a39637f.tar.gz opensim-SC-9480da06b971e7ffa500c33399cdb2114a39637f.tar.bz2 opensim-SC-9480da06b971e7ffa500c33399cdb2114a39637f.tar.xz |
only add a prim to physics in PhysicsShapeType if changing from type none. when viewers change ExtraPhysics parameters, send back the new values.
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneGraph.cs')
-rwxr-xr-x | OpenSim/Region/Framework/Scenes/SceneGraph.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneGraph.cs b/OpenSim/Region/Framework/Scenes/SceneGraph.cs index 238ec8e..1141f54 100755 --- a/OpenSim/Region/Framework/Scenes/SceneGraph.cs +++ b/OpenSim/Region/Framework/Scenes/SceneGraph.cs | |||
@@ -1660,7 +1660,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1660 | if (part != null) | 1660 | if (part != null) |
1661 | { | 1661 | { |
1662 | part.UpdateExtraPhysics(PhysData); | 1662 | part.UpdateExtraPhysics(PhysData); |
1663 | if (part.UpdatePhysRequired && remoteClient != null) | 1663 | if (remoteClient != null) |
1664 | remoteClient.SendPartPhysicsProprieties(part); | 1664 | remoteClient.SendPartPhysicsProprieties(part); |
1665 | } | 1665 | } |
1666 | } | 1666 | } |