diff options
author | Robert Adams | 2013-09-09 14:53:16 -0700 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-09-20 21:03:50 +0100 |
commit | 4179d8f6512e0a69ab5c9b687ef54184f8a04b46 (patch) | |
tree | 9ec95fa531957ea7cc3149340198f63b3774b38c /OpenSim/Region/OptionalModules | |
parent | BulletSim: add extended physics LSL constants for axis specification. (diff) | |
download | opensim-SC_OLD-4179d8f6512e0a69ab5c9b687ef54184f8a04b46.zip opensim-SC_OLD-4179d8f6512e0a69ab5c9b687ef54184f8a04b46.tar.gz opensim-SC_OLD-4179d8f6512e0a69ab5c9b687ef54184f8a04b46.tar.bz2 opensim-SC_OLD-4179d8f6512e0a69ab5c9b687ef54184f8a04b46.tar.xz |
BulletSim: add LSL function and plumbing for setting a spring
equilibrium point in the physics engine constraint.
Diffstat (limited to '')
-rwxr-xr-x | OpenSim/Region/OptionalModules/Scripting/ExtendedPhysics/ExtendedPhysics.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/ExtendedPhysics/ExtendedPhysics.cs b/OpenSim/Region/OptionalModules/Scripting/ExtendedPhysics/ExtendedPhysics.cs index b0b0bc6..9daf9d7 100755 --- a/OpenSim/Region/OptionalModules/Scripting/ExtendedPhysics/ExtendedPhysics.cs +++ b/OpenSim/Region/OptionalModules/Scripting/ExtendedPhysics/ExtendedPhysics.cs | |||
@@ -408,8 +408,10 @@ public class ExtendedPhysics : INonSharedRegionModule | |||
408 | public const int PHYS_PARAM_LINK_TYPE = 14419; | 408 | public const int PHYS_PARAM_LINK_TYPE = 14419; |
409 | [ScriptConstant] | 409 | [ScriptConstant] |
410 | public const int PHYS_PARAM_USE_LINEAR_FRAMEA = 14420; | 410 | public const int PHYS_PARAM_USE_LINEAR_FRAMEA = 14420; |
411 | [ScriptConstant] | ||
412 | public const int PHYS_PARAM_SPRING_EQUILIBRIUM_POINT = 14421; | ||
411 | 413 | ||
412 | public const int PHYS_PARAM_MAX = 14420; | 414 | public const int PHYS_PARAM_MAX = 14421; |
413 | 415 | ||
414 | // Used when specifying a parameter that has settings for the three linear and three angular axis | 416 | // Used when specifying a parameter that has settings for the three linear and three angular axis |
415 | [ScriptConstant] | 417 | [ScriptConstant] |