Remove unused PhysicsActor.SOPDescription
parent
c253539c04
commit
08bc6622dd
|
@ -895,15 +895,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
public string Description
|
public string Description
|
||||||
{
|
{
|
||||||
get { return m_description; }
|
get { return m_description; }
|
||||||
set
|
set { m_description = value; }
|
||||||
{
|
|
||||||
m_description = value;
|
|
||||||
PhysicsActor actor = PhysActor;
|
|
||||||
if (actor != null)
|
|
||||||
{
|
|
||||||
actor.SOPDescription = value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <value>
|
/// <value>
|
||||||
|
@ -1569,8 +1561,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
// Basic Physics returns null.. joy joy joy.
|
// Basic Physics returns null.. joy joy joy.
|
||||||
if (PhysActor != null)
|
if (PhysActor != null)
|
||||||
{
|
{
|
||||||
PhysActor.SOPName = this.Name; // save object name and desc into the PhysActor so ODE internals know the joint/body info
|
PhysActor.SOPName = this.Name; // save object into the PhysActor so ODE internals know the joint/body info
|
||||||
PhysActor.SOPDescription = this.Description;
|
|
||||||
PhysActor.SetMaterial(Material);
|
PhysActor.SetMaterial(Material);
|
||||||
DoPhysicsPropertyUpdate(RigidBody, true);
|
DoPhysicsPropertyUpdate(RigidBody, true);
|
||||||
PhysActor.SetVolumeDetect(VolumeDetectActive ? 1 : 0);
|
PhysActor.SetVolumeDetect(VolumeDetectActive ? 1 : 0);
|
||||||
|
|
Loading…
Reference in New Issue