aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/ExtendedPhysics/ExtendedPhysics.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/ExtendedPhysics/ExtendedPhysics.cs')
-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]