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/Manager/PhysicsActor.cs | |
parent | Though the viewer warns about receiving this, not sending appears to break ba... (diff) | |
download | opensim-SC_OLD-41b02a7208a8363f8edefb812e4f93238759d2bd.zip opensim-SC_OLD-41b02a7208a8363f8edefb812e4f93238759d2bd.tar.gz opensim-SC_OLD-41b02a7208a8363f8edefb812e4f93238759d2bd.tar.bz2 opensim-SC_OLD-41b02a7208a8363f8edefb812e4f93238759d2bd.tar.xz |
Remove unused SetAcceleration and add set on Acceleration parameter
Diffstat (limited to 'OpenSim/Region/Physics/Manager/PhysicsActor.cs')
-rw-r--r-- | OpenSim/Region/Physics/Manager/PhysicsActor.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsActor.cs b/OpenSim/Region/Physics/Manager/PhysicsActor.cs index c2acf97..0587054 100644 --- a/OpenSim/Region/Physics/Manager/PhysicsActor.cs +++ b/OpenSim/Region/Physics/Manager/PhysicsActor.cs | |||
@@ -261,7 +261,7 @@ namespace OpenSim.Region.Physics.Manager | |||
261 | 261 | ||
262 | public abstract Vector3 Torque { get; set; } | 262 | public abstract Vector3 Torque { get; set; } |
263 | public abstract float CollisionScore { get; set;} | 263 | public abstract float CollisionScore { get; set;} |
264 | public abstract Vector3 Acceleration { get; } | 264 | public abstract Vector3 Acceleration { get; set; } |
265 | public abstract Quaternion Orientation { get; set; } | 265 | public abstract Quaternion Orientation { get; set; } |
266 | public abstract int PhysicsActorType { get; set; } | 266 | public abstract int PhysicsActorType { get; set; } |
267 | public abstract bool IsPhysical { get; set; } | 267 | public abstract bool IsPhysical { get; set; } |
@@ -458,6 +458,7 @@ namespace OpenSim.Region.Physics.Manager | |||
458 | public override Vector3 Acceleration | 458 | public override Vector3 Acceleration |
459 | { | 459 | { |
460 | get { return Vector3.Zero; } | 460 | get { return Vector3.Zero; } |
461 | set { } | ||
461 | } | 462 | } |
462 | 463 | ||
463 | public override bool IsPhysical | 464 | public override bool IsPhysical |