aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules
diff options
context:
space:
mode:
authorRobert Adams2013-08-22 09:08:58 -0700
committerJustin Clark-Casey (justincc)2013-09-20 21:03:31 +0100
commit2e32b2aacbd5b3ab1b5ed0f5e34ef263e086683f (patch)
tree7d0e0f6774d133773a6f5274b265e2b808dd39f5 /OpenSim/Region/OptionalModules
parentBulletSim: add requestor's ID to post taint detail log message. (diff)
downloadopensim-SC_OLD-2e32b2aacbd5b3ab1b5ed0f5e34ef263e086683f.zip
opensim-SC_OLD-2e32b2aacbd5b3ab1b5ed0f5e34ef263e086683f.tar.gz
opensim-SC_OLD-2e32b2aacbd5b3ab1b5ed0f5e34ef263e086683f.tar.bz2
opensim-SC_OLD-2e32b2aacbd5b3ab1b5ed0f5e34ef263e086683f.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-xOpenSim/Region/OptionalModules/Scripting/ExtendedPhysics/ExtendedPhysics.cs6
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]