Add setter for Acceleration on physics objects.

avinationmerge
Melanie 2011-12-24 01:41:32 +01:00
parent 5b28e29530
commit f2855d3668
2 changed files with 2 additions and 0 deletions

View File

@ -841,6 +841,7 @@ namespace OpenSim.Region.Physics.OdePlugin
public override Vector3 Acceleration
{
get { return _acceleration; }
set { _acceleration = value; }
}
public void SetAcceleration(Vector3 accel)

View File

@ -673,6 +673,7 @@ namespace OpenSim.Region.Physics.OdePlugin
}
return _acceleration;
}
set { _acceleration = value; }
}