diff options
author | Teravus Ovares | 2008-05-06 00:23:19 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-05-06 00:23:19 +0000 |
commit | 240e8646dac402068930065c1fb792e647f1ce4b (patch) | |
tree | 10064eea011ac7155c947b11a64bcc650feb6dbb /OpenSim/Region/Physics/Manager | |
parent | * Refactor: Break out permissions code into a separate region PermissionsModule (diff) | |
download | opensim-SC_OLD-240e8646dac402068930065c1fb792e647f1ce4b.zip opensim-SC_OLD-240e8646dac402068930065c1fb792e647f1ce4b.tar.gz opensim-SC_OLD-240e8646dac402068930065c1fb792e647f1ce4b.tar.bz2 opensim-SC_OLD-240e8646dac402068930065c1fb792e647f1ce4b.tar.xz |
* If you llApplyImpulse on an attachment, it applies impulse on the avatar, not the attachment.
Diffstat (limited to 'OpenSim/Region/Physics/Manager')
-rw-r--r-- | OpenSim/Region/Physics/Manager/PhysicsActor.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsActor.cs b/OpenSim/Region/Physics/Manager/PhysicsActor.cs index 046c285..c1dc91b 100644 --- a/OpenSim/Region/Physics/Manager/PhysicsActor.cs +++ b/OpenSim/Region/Physics/Manager/PhysicsActor.cs | |||
@@ -196,7 +196,7 @@ namespace OpenSim.Region.Physics.Manager | |||
196 | public abstract float PIDTau { set; } | 196 | public abstract float PIDTau { set; } |
197 | 197 | ||
198 | 198 | ||
199 | public abstract void AddForce(PhysicsVector force); | 199 | public abstract void AddForce(PhysicsVector force, bool pushforce); |
200 | public abstract void SetMomentum(PhysicsVector momentum); | 200 | public abstract void SetMomentum(PhysicsVector momentum); |
201 | public abstract void SubscribeEvents(int ms); | 201 | public abstract void SubscribeEvents(int ms); |
202 | public abstract void UnSubscribeEvents(); | 202 | public abstract void UnSubscribeEvents(); |
@@ -365,7 +365,7 @@ namespace OpenSim.Region.Physics.Manager | |||
365 | { | 365 | { |
366 | } | 366 | } |
367 | 367 | ||
368 | public override void AddForce(PhysicsVector force) | 368 | public override void AddForce(PhysicsVector force, bool pushforce) |
369 | { | 369 | { |
370 | } | 370 | } |
371 | 371 | ||