diff options
author | Justin Clark-Casey (justincc) | 2011-10-20 17:54:32 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-10-20 17:54:32 +0100 |
commit | b63ec987b0a1692da4c5e84facf0ea149d4cfe90 (patch) | |
tree | d8ead4576faf629046fe39294164cd391f6f4f37 /OpenSim/Region/Physics/OdePlugin/ODECharacter.cs | |
parent | Change wording on asset requests. (diff) | |
download | opensim-SC_OLD-b63ec987b0a1692da4c5e84facf0ea149d4cfe90.zip opensim-SC_OLD-b63ec987b0a1692da4c5e84facf0ea149d4cfe90.tar.gz opensim-SC_OLD-b63ec987b0a1692da4c5e84facf0ea149d4cfe90.tar.bz2 opensim-SC_OLD-b63ec987b0a1692da4c5e84facf0ea149d4cfe90.tar.xz |
For now, stop passing timeStep into methods where it's not actually used.
Diffstat (limited to 'OpenSim/Region/Physics/OdePlugin/ODECharacter.cs')
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/ODECharacter.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs b/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs index 0462866..e9bab66 100644 --- a/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs +++ b/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs | |||
@@ -883,15 +883,14 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
883 | /// Called from Simulate | 883 | /// Called from Simulate |
884 | /// This is the avatar's movement control + PID Controller | 884 | /// This is the avatar's movement control + PID Controller |
885 | /// </summary> | 885 | /// </summary> |
886 | /// <param name="timeStep"></param> | ||
887 | /// <param name="defects"> | 886 | /// <param name="defects"> |
888 | /// If there is something wrong with the character (e.g. its position is non-finite) | 887 | /// If there is something wrong with the character (e.g. its position is non-finite) |
889 | /// then it is added to this list. The ODE structures associated with it are also destroyed. | 888 | /// then it is added to this list. The ODE structures associated with it are also destroyed. |
890 | /// </param> | 889 | /// </param> |
891 | public void Move(float timeStep, List<OdeCharacter> defects) | 890 | internal void Move(List<OdeCharacter> defects) |
892 | { | 891 | { |
893 | // no lock; for now it's only called from within Simulate() | 892 | // no lock; for now it's only called from within Simulate() |
894 | 893 | ||
895 | // If the PID Controller isn't active then we set our force | 894 | // If the PID Controller isn't active then we set our force |
896 | // calculating base velocity to the current position | 895 | // calculating base velocity to the current position |
897 | 896 | ||