diff options
author | Robert Adams | 2013-08-22 09:08:58 -0700 |
---|---|---|
committer | Robert Adams | 2013-09-11 09:12:12 -0700 |
commit | 30b3657a66e5a4012b96baae2c0424ec13409f83 (patch) | |
tree | 3892adaa1534d3f36ecbc6ab6807ad0040736b75 /OpenSim/Region/OptionalModules | |
parent | BulletSim: add requestor's ID to post taint detail log message. (diff) | |
download | opensim-SC_OLD-30b3657a66e5a4012b96baae2c0424ec13409f83.zip opensim-SC_OLD-30b3657a66e5a4012b96baae2c0424ec13409f83.tar.gz opensim-SC_OLD-30b3657a66e5a4012b96baae2c0424ec13409f83.tar.bz2 opensim-SC_OLD-30b3657a66e5a4012b96baae2c0424ec13409f83.tar.xz |
BulletSim: implementation of setting spring specific physical parameters. Add setting of linkset type to physChangeLinkParams. Lots of detail logging for setting of linkset constraint parameters.
Diffstat (limited to 'OpenSim/Region/OptionalModules')
-rwxr-xr-x | OpenSim/Region/OptionalModules/Scripting/ExtendedPhysics/ExtendedPhysics.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/ExtendedPhysics/ExtendedPhysics.cs b/OpenSim/Region/OptionalModules/Scripting/ExtendedPhysics/ExtendedPhysics.cs index 10e13b9..2f88e2b 100755 --- a/OpenSim/Region/OptionalModules/Scripting/ExtendedPhysics/ExtendedPhysics.cs +++ b/OpenSim/Region/OptionalModules/Scripting/ExtendedPhysics/ExtendedPhysics.cs | |||
@@ -367,6 +367,7 @@ public class ExtendedPhysics : INonSharedRegionModule | |||
367 | // Code for specifying params. | 367 | // Code for specifying params. |
368 | // The choice if 14400 is arbitrary and only serves to catch parameter code misuse. | 368 | // The choice if 14400 is arbitrary and only serves to catch parameter code misuse. |
369 | public const int PHYS_PARAM_MIN = 14401; | 369 | public const int PHYS_PARAM_MIN = 14401; |
370 | |||
370 | [ScriptConstant] | 371 | [ScriptConstant] |
371 | public const int PHYS_PARAM_FRAMEINA_LOC = 14401; | 372 | public const int PHYS_PARAM_FRAMEINA_LOC = 14401; |
372 | [ScriptConstant] | 373 | [ScriptConstant] |
@@ -401,7 +402,10 @@ public class ExtendedPhysics : INonSharedRegionModule | |||
401 | public const int PHYS_PARAM_SPRING_DAMPING = 14416; | 402 | public const int PHYS_PARAM_SPRING_DAMPING = 14416; |
402 | [ScriptConstant] | 403 | [ScriptConstant] |
403 | public const int PHYS_PARAM_SPRING_STIFFNESS = 14417; | 404 | public const int PHYS_PARAM_SPRING_STIFFNESS = 14417; |
404 | public const int PHYS_PARAM_MAX = 14417; | 405 | [ScriptConstant] |
406 | public const int PHYS_PARAM_LINK_TYPE = 14418; | ||
407 | |||
408 | public const int PHYS_PARAM_MAX = 14418; | ||
405 | 409 | ||
406 | // physChangeLinkParams(integer linkNum, [ PHYS_PARAM_*, value, PHYS_PARAM_*, value, ...]) | 410 | // physChangeLinkParams(integer linkNum, [ PHYS_PARAM_*, value, PHYS_PARAM_*, value, ...]) |
407 | [ScriptInvocation] | 411 | [ScriptInvocation] |