diff options
author | Robert Adams | 2013-08-22 16:31:17 -0700 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-09-20 21:03:34 +0100 |
commit | 7a9eb26b00b2217c5d50607e52db73d08debd6f8 (patch) | |
tree | ea0c1e906005fd88b1bad0e726d7fccf2466b647 /OpenSim/Region/OptionalModules | |
parent | BulletSim: implementation of setting spring specific physical parameters. Add... (diff) | |
download | opensim-SC_OLD-7a9eb26b00b2217c5d50607e52db73d08debd6f8.zip opensim-SC_OLD-7a9eb26b00b2217c5d50607e52db73d08debd6f8.tar.gz opensim-SC_OLD-7a9eb26b00b2217c5d50607e52db73d08debd6f8.tar.bz2 opensim-SC_OLD-7a9eb26b00b2217c5d50607e52db73d08debd6f8.tar.xz |
BulletSim: add axis parameter for specifying enable, damping, and stiffness for spring constraints. Renumber parameter ops since I can as no one is using them yet.
Diffstat (limited to 'OpenSim/Region/OptionalModules')
-rwxr-xr-x | OpenSim/Region/OptionalModules/Scripting/ExtendedPhysics/ExtendedPhysics.cs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/ExtendedPhysics/ExtendedPhysics.cs b/OpenSim/Region/OptionalModules/Scripting/ExtendedPhysics/ExtendedPhysics.cs index 2f88e2b..ef106bd 100755 --- a/OpenSim/Region/OptionalModules/Scripting/ExtendedPhysics/ExtendedPhysics.cs +++ b/OpenSim/Region/OptionalModules/Scripting/ExtendedPhysics/ExtendedPhysics.cs | |||
@@ -399,13 +399,15 @@ public class ExtendedPhysics : INonSharedRegionModule | |||
399 | [ScriptConstant] | 399 | [ScriptConstant] |
400 | public const int PHYS_PARAM_SOLVER_ITERATIONS = 14415; | 400 | public const int PHYS_PARAM_SOLVER_ITERATIONS = 14415; |
401 | [ScriptConstant] | 401 | [ScriptConstant] |
402 | public const int PHYS_PARAM_SPRING_DAMPING = 14416; | 402 | public const int PHYS_PARAM_SPRING_AXIS_ENABLE = 14416; |
403 | [ScriptConstant] | 403 | [ScriptConstant] |
404 | public const int PHYS_PARAM_SPRING_STIFFNESS = 14417; | 404 | public const int PHYS_PARAM_SPRING_DAMPING = 14417; |
405 | [ScriptConstant] | 405 | [ScriptConstant] |
406 | public const int PHYS_PARAM_LINK_TYPE = 14418; | 406 | public const int PHYS_PARAM_SPRING_STIFFNESS = 14418; |
407 | [ScriptConstant] | ||
408 | public const int PHYS_PARAM_LINK_TYPE = 14419; | ||
407 | 409 | ||
408 | public const int PHYS_PARAM_MAX = 14418; | 410 | public const int PHYS_PARAM_MAX = 14419; |
409 | 411 | ||
410 | // physChangeLinkParams(integer linkNum, [ PHYS_PARAM_*, value, PHYS_PARAM_*, value, ...]) | 412 | // physChangeLinkParams(integer linkNum, [ PHYS_PARAM_*, value, PHYS_PARAM_*, value, ...]) |
411 | [ScriptInvocation] | 413 | [ScriptInvocation] |