diff options
author | Dan Lake | 2011-12-20 14:45:32 -0800 |
---|---|---|
committer | Dan Lake | 2011-12-20 14:45:32 -0800 |
commit | 41b02a7208a8363f8edefb812e4f93238759d2bd (patch) | |
tree | 3de2f42376d23ead500098d98e6d2bbd6e21feda /OpenSim/Region/Physics/PhysXPlugin/PhysXPrim.cs | |
parent | Though the viewer warns about receiving this, not sending appears to break ba... (diff) | |
download | opensim-SC-41b02a7208a8363f8edefb812e4f93238759d2bd.zip opensim-SC-41b02a7208a8363f8edefb812e4f93238759d2bd.tar.gz opensim-SC-41b02a7208a8363f8edefb812e4f93238759d2bd.tar.bz2 opensim-SC-41b02a7208a8363f8edefb812e4f93238759d2bd.tar.xz |
Remove unused SetAcceleration and add set on Acceleration parameter
Diffstat (limited to 'OpenSim/Region/Physics/PhysXPlugin/PhysXPrim.cs')
-rw-r--r-- | OpenSim/Region/Physics/PhysXPlugin/PhysXPrim.cs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/OpenSim/Region/Physics/PhysXPlugin/PhysXPrim.cs b/OpenSim/Region/Physics/PhysXPlugin/PhysXPrim.cs index c0e24fd..42bd119 100644 --- a/OpenSim/Region/Physics/PhysXPlugin/PhysXPrim.cs +++ b/OpenSim/Region/Physics/PhysXPlugin/PhysXPrim.cs | |||
@@ -207,11 +207,7 @@ namespace OpenSim.Region.Physics.PhysXPlugin | |||
207 | public override Vector3 Acceleration | 207 | public override Vector3 Acceleration |
208 | { | 208 | { |
209 | get { return _acceleration; } | 209 | get { return _acceleration; } |
210 | } | 210 | set { _acceleration = value; } |
211 | |||
212 | public void SetAcceleration(Vector3 accel) | ||
213 | { | ||
214 | _acceleration = accel; | ||
215 | } | 211 | } |
216 | 212 | ||
217 | public override void AddForce(Vector3 force, bool pushforce) | 213 | public override void AddForce(Vector3 force, bool pushforce) |