diff options
author | Dan Lake | 2011-12-20 13:40:24 -0800 |
---|---|---|
committer | Dan Lake | 2011-12-20 13:40:24 -0800 |
commit | a1dc4e830dac3fa31a107aa855d2d2b2efeca0f2 (patch) | |
tree | bd9dd4d75fde576d2ea876a9356e41fde4e84f20 /OpenSim/Region/Physics/OdePlugin/ODECharacter.cs | |
parent | Just adding a comment to SendFullUpdatToClient (diff) | |
download | opensim-SC_OLD-a1dc4e830dac3fa31a107aa855d2d2b2efeca0f2.zip opensim-SC_OLD-a1dc4e830dac3fa31a107aa855d2d2b2efeca0f2.tar.gz opensim-SC_OLD-a1dc4e830dac3fa31a107aa855d2d2b2efeca0f2.tar.bz2 opensim-SC_OLD-a1dc4e830dac3fa31a107aa855d2d2b2efeca0f2.tar.xz |
Remove unused SetAcceleration and add set on Acceleration parameter
Diffstat (limited to 'OpenSim/Region/Physics/OdePlugin/ODECharacter.cs')
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/ODECharacter.cs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs b/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs index 73c1c02..1363cfd 100644 --- a/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs +++ b/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs | |||
@@ -689,12 +689,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
689 | public override Vector3 Acceleration | 689 | public override Vector3 Acceleration |
690 | { | 690 | { |
691 | get { return _acceleration; } | 691 | get { return _acceleration; } |
692 | } | 692 | set { _acceleration = value; } |
693 | |||
694 | public void SetAcceleration(Vector3 accel) | ||
695 | { | ||
696 | m_pidControllerActive = true; | ||
697 | _acceleration = accel; | ||
698 | } | 693 | } |
699 | 694 | ||
700 | /// <summary> | 695 | /// <summary> |