aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules
diff options
context:
space:
mode:
authorRobert Adams2013-08-24 08:33:28 -0700
committerJustin Clark-Casey (justincc)2013-09-20 21:03:42 +0100
commit9d04c6a828d509ccc8d6feb64ab9b9dab48c6b31 (patch)
tree0875f11021972e73588fa6dd82856af8d6cdc89e /OpenSim/Region/OptionalModules
parentBulletSim: add axis parameter for specifying enable, damping, and stiffness f... (diff)
downloadopensim-SC_OLD-9d04c6a828d509ccc8d6feb64ab9b9dab48c6b31.zip
opensim-SC_OLD-9d04c6a828d509ccc8d6feb64ab9b9dab48c6b31.tar.gz
opensim-SC_OLD-9d04c6a828d509ccc8d6feb64ab9b9dab48c6b31.tar.bz2
opensim-SC_OLD-9d04c6a828d509ccc8d6feb64ab9b9dab48c6b31.tar.xz
BulletSim: ability to specify groups of axis to modify in constraint parameters that control multiple axis. Add useLinearReferenceFrameA constraint parameter.
Diffstat (limited to 'OpenSim/Region/OptionalModules')
-rwxr-xr-xOpenSim/Region/OptionalModules/Scripting/ExtendedPhysics/ExtendedPhysics.cs12
1 files changed, 11 insertions, 1 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/ExtendedPhysics/ExtendedPhysics.cs b/OpenSim/Region/OptionalModules/Scripting/ExtendedPhysics/ExtendedPhysics.cs
index ef106bd..94367f5 100755
--- a/OpenSim/Region/OptionalModules/Scripting/ExtendedPhysics/ExtendedPhysics.cs
+++ b/OpenSim/Region/OptionalModules/Scripting/ExtendedPhysics/ExtendedPhysics.cs
@@ -406,8 +406,18 @@ public class ExtendedPhysics : INonSharedRegionModule
406 public const int PHYS_PARAM_SPRING_STIFFNESS = 14418; 406 public const int PHYS_PARAM_SPRING_STIFFNESS = 14418;
407 [ScriptConstant] 407 [ScriptConstant]
408 public const int PHYS_PARAM_LINK_TYPE = 14419; 408 public const int PHYS_PARAM_LINK_TYPE = 14419;
409 [ScriptConstant]
410 public const int PHYS_PARAM_USE_LINEAR_FRAMEA = 14420;
411
412 public const int PHYS_PARAM_MAX = 14420;
409 413
410 public const int PHYS_PARAM_MAX = 14419; 414 // Used when specifying a parameter that has settings for the three linear and three angular axis
415 [ScriptConstant]
416 public const int PHYS_AXIS_ALL = -1;
417 [ScriptConstant]
418 public const int PHYS_AXIS_ALL_LINEAR = -2;
419 [ScriptConstant]
420 public const int PHYS_AXIS_ALL_ANGULAR = -3;
411 421
412 // physChangeLinkParams(integer linkNum, [ PHYS_PARAM_*, value, PHYS_PARAM_*, value, ...]) 422 // physChangeLinkParams(integer linkNum, [ PHYS_PARAM_*, value, PHYS_PARAM_*, value, ...])
413 [ScriptInvocation] 423 [ScriptInvocation]