diff options
author | Teravus Ovares | 2008-02-15 21:35:52 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-02-15 21:35:52 +0000 |
commit | be6edefcfb6574c1d011809315bfc464c479844c (patch) | |
tree | 23140c1fc6e72f20289c3ea975b9b70aa8277662 /OpenSim/Region/Environment/Scenes/SceneObjectPart.cs | |
parent | Resolve mantis #572 - terrain help printed multiple times when change-region ... (diff) | |
download | opensim-SC_OLD-be6edefcfb6574c1d011809315bfc464c479844c.zip opensim-SC_OLD-be6edefcfb6574c1d011809315bfc464c479844c.tar.gz opensim-SC_OLD-be6edefcfb6574c1d011809315bfc464c479844c.tar.bz2 opensim-SC_OLD-be6edefcfb6574c1d011809315bfc464c479844c.tar.xz |
* ODE Stability update 4 :D
* Changed the way meshing requests get sent to the ODEPlugin
* Numerous other fixes
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneObjectPart.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneObjectPart.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs index 1d5dd5b..5756a0b 100644 --- a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs | |||
@@ -1182,6 +1182,10 @@ namespace OpenSim.Region.Environment.Scenes | |||
1182 | m_shape.PathTaperY = shapeBlock.PathTaperY; | 1182 | m_shape.PathTaperY = shapeBlock.PathTaperY; |
1183 | m_shape.PathTwist = shapeBlock.PathTwist; | 1183 | m_shape.PathTwist = shapeBlock.PathTwist; |
1184 | m_shape.PathTwistBegin = shapeBlock.PathTwistBegin; | 1184 | m_shape.PathTwistBegin = shapeBlock.PathTwistBegin; |
1185 | if (PhysActor != null) | ||
1186 | { | ||
1187 | PhysActor.Shape = m_shape; | ||
1188 | } | ||
1185 | ScheduleFullUpdate(); | 1189 | ScheduleFullUpdate(); |
1186 | } | 1190 | } |
1187 | 1191 | ||
@@ -1583,6 +1587,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
1583 | public void Resize(LLVector3 scale) | 1587 | public void Resize(LLVector3 scale) |
1584 | { | 1588 | { |
1585 | m_shape.Scale = scale; | 1589 | m_shape.Scale = scale; |
1590 | |||
1586 | ScheduleFullUpdate(); | 1591 | ScheduleFullUpdate(); |
1587 | } | 1592 | } |
1588 | 1593 | ||