diff options
author | Robert Adams | 2013-08-07 11:13:53 -0700 |
---|---|---|
committer | Robert Adams | 2013-09-11 09:11:45 -0700 |
commit | f3cc20050e8e4ce047509589f828ccafbc59e3a9 (patch) | |
tree | f830243959b91d94777e7d0648690eac8bdc45fe /OpenSim/Region/Physics/BulletSPlugin/BSScene.cs | |
parent | BulletSim: move linkset extension operations into BSPrimLinkable where they s... (diff) | |
download | opensim-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.cs | 4 |
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) |