diff options
author | Robert Adams | 2013-08-22 16:31:17 -0700 |
---|---|---|
committer | Robert Adams | 2013-09-11 09:12:14 -0700 |
commit | 7c54630a2dde768e92b3034d76314cb1e061c348 (patch) | |
tree | 4933b55e96db68c994d1b0e9119f335a1632a5fa /OpenSim/Region/OptionalModules/Scripting/ExtendedPhysics | |
parent | BulletSim: implementation of setting spring specific physical parameters. Add... (diff) | |
download | opensim-SC-7c54630a2dde768e92b3034d76314cb1e061c348.zip opensim-SC-7c54630a2dde768e92b3034d76314cb1e061c348.tar.gz opensim-SC-7c54630a2dde768e92b3034d76314cb1e061c348.tar.bz2 opensim-SC-7c54630a2dde768e92b3034d76314cb1e061c348.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/Scripting/ExtendedPhysics')
-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] |