diff options
author | Teravus Ovares | 2007-11-18 13:37:02 +0000 |
---|---|---|
committer | Teravus Ovares | 2007-11-18 13:37:02 +0000 |
commit | 46ccfa1741abbf445b49e79045e649798d1c0b63 (patch) | |
tree | 44a5495e2026a57299b819acc0dea790d66c7a33 /OpenSim/Region/Environment/Scenes/Scene.Inventory.cs | |
parent | Made the background (ie empty space) colour of the exported map image blue. (diff) | |
download | opensim-SC_OLD-46ccfa1741abbf445b49e79045e649798d1c0b63.zip opensim-SC_OLD-46ccfa1741abbf445b49e79045e649798d1c0b63.tar.gz opensim-SC_OLD-46ccfa1741abbf445b49e79045e649798d1c0b63.tar.bz2 opensim-SC_OLD-46ccfa1741abbf445b49e79045e649798d1c0b63.tar.xz |
* Found several cases where prim set physical were not subscribing to physics events.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.Inventory.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.Inventory.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs index c811966..b06fa2f 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs | |||
@@ -449,7 +449,11 @@ namespace OpenSim.Region.Environment.Scenes | |||
449 | new PhysicsVector(rootPart.Scale.X, rootPart.Scale.Y, rootPart.Scale.Z), | 449 | new PhysicsVector(rootPart.Scale.X, rootPart.Scale.Y, rootPart.Scale.Z), |
450 | new Quaternion(rootPart.RotationOffset.W, rootPart.RotationOffset.X, | 450 | new Quaternion(rootPart.RotationOffset.W, rootPart.RotationOffset.X, |
451 | rootPart.RotationOffset.Y, rootPart.RotationOffset.Z), UsePhysics); | 451 | rootPart.RotationOffset.Y, rootPart.RotationOffset.Z), UsePhysics); |
452 | |||
453 | rootPart.doPhysicsPropertyUpdate(UsePhysics); | ||
454 | |||
452 | } | 455 | } |
456 | rootPart.ScheduleFullUpdate(); | ||
453 | } | 457 | } |
454 | } | 458 | } |
455 | } \ No newline at end of file | 459 | } \ No newline at end of file |