aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/Manager/PhysicsActor.cs
diff options
context:
space:
mode:
authorRobert Adams2013-07-23 08:12:34 -0700
committerRobert Adams2013-07-23 08:12:34 -0700
commit401c2e2f2ec7c6001387df505665b19477afd4cf (patch)
tree71c5a232aae13380c8d66a985ff533eda40b79b8 /OpenSim/Region/Physics/Manager/PhysicsActor.cs
parentRevert "Revert "BulletSim: freshen up the code for constraint based linksets."" (diff)
downloadopensim-SC_OLD-401c2e2f2ec7c6001387df505665b19477afd4cf.zip
opensim-SC_OLD-401c2e2f2ec7c6001387df505665b19477afd4cf.tar.gz
opensim-SC_OLD-401c2e2f2ec7c6001387df505665b19477afd4cf.tar.bz2
opensim-SC_OLD-401c2e2f2ec7c6001387df505665b19477afd4cf.tar.xz
Revert "Revert "Add experimental stubs for an extension function interface on both""
Found that the vehicle movement problem was not caused by these physics changes. This reverts commit 89857378ce79f93a265bc1eb151e17742032abfa.
Diffstat (limited to 'OpenSim/Region/Physics/Manager/PhysicsActor.cs')
-rw-r--r--OpenSim/Region/Physics/Manager/PhysicsActor.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsActor.cs b/OpenSim/Region/Physics/Manager/PhysicsActor.cs
index bd806eb..2500f27 100644
--- a/OpenSim/Region/Physics/Manager/PhysicsActor.cs
+++ b/OpenSim/Region/Physics/Manager/PhysicsActor.cs
@@ -313,6 +313,12 @@ namespace OpenSim.Region.Physics.Manager
313 public abstract void SubscribeEvents(int ms); 313 public abstract void SubscribeEvents(int ms);
314 public abstract void UnSubscribeEvents(); 314 public abstract void UnSubscribeEvents();
315 public abstract bool SubscribedEvents(); 315 public abstract bool SubscribedEvents();
316
317 // Extendable interface for new, physics engine specific operations
318 public virtual object Extension(string pFunct, params object[] pParams)
319 {
320 throw new NotImplementedException();
321 }
316 } 322 }
317 323
318 public class NullPhysicsActor : PhysicsActor 324 public class NullPhysicsActor : PhysicsActor