diff options
author | UbitUmarov | 2016-07-27 21:32:47 +0100 |
---|---|---|
committer | UbitUmarov | 2016-07-27 21:32:47 +0100 |
commit | 9aacdca653e6197430b65c2a81d3af8c7081865b (patch) | |
tree | 7fae302fd56ca8c677f82befea02f1a23f90d599 | |
parent | actually that was redundante, already done at low level (diff) | |
download | opensim-SC-9aacdca653e6197430b65c2a81d3af8c7081865b.zip opensim-SC-9aacdca653e6197430b65c2a81d3af8c7081865b.tar.gz opensim-SC-9aacdca653e6197430b65c2a81d3af8c7081865b.tar.bz2 opensim-SC-9aacdca653e6197430b65c2a81d3af8c7081865b.tar.xz |
but buoyancy was missing
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs index 133b4ce..0b8076a 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | |||
@@ -4883,6 +4883,7 @@ SendFullUpdateToClient(remoteClient, Position) ignores position parameter | |||
4883 | pa.GravModifier = GravityModifier; | 4883 | pa.GravModifier = GravityModifier; |
4884 | pa.Friction = Friction; | 4884 | pa.Friction = Friction; |
4885 | pa.Restitution = Restitution; | 4885 | pa.Restitution = Restitution; |
4886 | pa.Buoyancy = Buoyancy; | ||
4886 | 4887 | ||
4887 | if(LocalId == ParentGroup.RootPart.LocalId) | 4888 | if(LocalId == ParentGroup.RootPart.LocalId) |
4888 | { | 4889 | { |
@@ -4927,7 +4928,6 @@ SendFullUpdateToClient(remoteClient, Position) ignores position parameter | |||
4927 | { | 4928 | { |
4928 | Velocity = velocity; | 4929 | Velocity = velocity; |
4929 | AngularVelocity = rotationalVelocity; | 4930 | AngularVelocity = rotationalVelocity; |
4930 | pa.RotationalVelocity = rotationalVelocity; | ||
4931 | 4931 | ||
4932 | // if not vehicle and root part apply force and torque | 4932 | // if not vehicle and root part apply force and torque |
4933 | if ((m_vehicleParams == null || m_vehicleParams.Type == Vehicle.TYPE_NONE)) | 4933 | if ((m_vehicleParams == null || m_vehicleParams.Type == Vehicle.TYPE_NONE)) |