aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/BulletSPlugin/BSScene.cs
diff options
context:
space:
mode:
authorRobert Adams2013-08-07 11:13:53 -0700
committerRobert Adams2013-09-11 09:11:45 -0700
commitf3cc20050e8e4ce047509589f828ccafbc59e3a9 (patch)
treef830243959b91d94777e7d0648690eac8bdc45fe /OpenSim/Region/Physics/BulletSPlugin/BSScene.cs
parentBulletSim: move linkset extension operations into BSPrimLinkable where they s... (diff)
downloadopensim-SC_OLD-f3cc20050e8e4ce047509589f828ccafbc59e3a9.zip
opensim-SC_OLD-f3cc20050e8e4ce047509589f828ccafbc59e3a9.tar.gz
opensim-SC_OLD-f3cc20050e8e4ce047509589f828ccafbc59e3a9.tar.bz2
opensim-SC_OLD-f3cc20050e8e4ce047509589f828ccafbc59e3a9.tar.xz
BulletSim: initial implementation of physChangeLinkFixed that resets a linkset's link back to a fixed, non-moving connection.
Diffstat (limited to 'OpenSim/Region/Physics/BulletSPlugin/BSScene.cs')
-rw-r--r--OpenSim/Region/Physics/BulletSPlugin/BSScene.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/BulletSPlugin/BSScene.cs b/OpenSim/Region/Physics/BulletSPlugin/BSScene.cs
index c92c9b9..571db86 100644
--- a/OpenSim/Region/Physics/BulletSPlugin/BSScene.cs
+++ b/OpenSim/Region/Physics/BulletSPlugin/BSScene.cs
@@ -875,6 +875,10 @@ public sealed class BSScene : PhysicsScene, IPhysicsParameters
875 // Per prim functions. See BSPrim. 875 // Per prim functions. See BSPrim.
876 public const string PhysFunctGetLinksetType = "BulletSim.GetLinksetType"; 876 public const string PhysFunctGetLinksetType = "BulletSim.GetLinksetType";
877 public const string PhysFunctSetLinksetType = "BulletSim.SetLinksetType"; 877 public const string PhysFunctSetLinksetType = "BulletSim.SetLinksetType";
878 public const string PhysFunctChangeLinkFixed = "BulletSim.ChangeLinkFixed";
879 public const string PhysFunctChangeLinkHinge = "BulletSim.ChangeLinkHinge";
880 public const string PhysFunctChangeLinkSpring = "BulletSim.ChangeLinkSpring";
881 public const string PhysFunctChangeLinkSlider = "BulletSim.ChangeLinkSlider";
878 // ============================================================= 882 // =============================================================
879 883
880 public override object Extension(string pFunct, params object[] pParams) 884 public override object Extension(string pFunct, params object[] pParams)