Remove unused SetAcceleration and add set on Acceleration parameter

This commit is contained in:
Dan Lake
2011-12-20 14:45:32 -08:00
parent fa0a71253f
commit 41b02a7208
11 changed files with 14 additions and 35 deletions

View File

@@ -690,12 +690,7 @@ namespace OpenSim.Region.Physics.OdePlugin
public override Vector3 Acceleration
{
get { return _acceleration; }
}
public void SetAcceleration(Vector3 accel)
{
m_pidControllerActive = true;
_acceleration = accel;
set { _acceleration = value; }
}
/// <summary>

View File

@@ -2497,6 +2497,7 @@ Console.WriteLine(" JointCreateFixed");
public override Vector3 Acceleration
{
get { return _acceleration; }
set { _acceleration = value; }
}
public override void AddForce(Vector3 force, bool pushforce)