diff options
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs index 7778ebc..a0e87d0 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | |||
@@ -1603,7 +1603,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
1603 | RotationOffset, | 1603 | RotationOffset, |
1604 | RigidBody, | 1604 | RigidBody, |
1605 | m_localId); | 1605 | m_localId); |
1606 | PhysActor.SetMaterial(Material); | ||
1607 | } | 1606 | } |
1608 | catch | 1607 | catch |
1609 | { | 1608 | { |
@@ -1615,6 +1614,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1615 | { | 1614 | { |
1616 | PhysActor.SOPName = this.Name; // save object name and desc into the PhysActor so ODE internals know the joint/body info | 1615 | PhysActor.SOPName = this.Name; // save object name and desc into the PhysActor so ODE internals know the joint/body info |
1617 | PhysActor.SOPDescription = this.Description; | 1616 | PhysActor.SOPDescription = this.Description; |
1617 | PhysActor.SetMaterial(Material); | ||
1618 | DoPhysicsPropertyUpdate(RigidBody, true); | 1618 | DoPhysicsPropertyUpdate(RigidBody, true); |
1619 | PhysActor.SetVolumeDetect(VolumeDetectActive ? 1 : 0); | 1619 | PhysActor.SetVolumeDetect(VolumeDetectActive ? 1 : 0); |
1620 | } | 1620 | } |
@@ -4530,11 +4530,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
4530 | RotationOffset, | 4530 | RotationOffset, |
4531 | UsePhysics, | 4531 | UsePhysics, |
4532 | m_localId); | 4532 | m_localId); |
4533 | PhysActor.SetMaterial(Material); | ||
4534 | 4533 | ||
4535 | pa = PhysActor; | 4534 | pa = PhysActor; |
4536 | if (pa != null) | 4535 | if (pa != null) |
4537 | { | 4536 | { |
4537 | PhysActor.SetMaterial(Material); | ||
4538 | DoPhysicsPropertyUpdate(UsePhysics, true); | 4538 | DoPhysicsPropertyUpdate(UsePhysics, true); |
4539 | 4539 | ||
4540 | if (m_parentGroup != null) | 4540 | if (m_parentGroup != null) |