diff options
author | Melanie | 2012-04-07 04:52:14 +0100 |
---|---|---|
committer | Melanie | 2012-04-07 04:52:14 +0100 |
commit | b39de2425cac4c2a94a7fdd6c77100ef831d66b4 (patch) | |
tree | 9258928681a82d68b408354e534c32bcf283ad3a /OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs | |
parent | Merge branch 'ubitwork' (diff) | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC-b39de2425cac4c2a94a7fdd6c77100ef831d66b4.zip opensim-SC-b39de2425cac4c2a94a7fdd6c77100ef831d66b4.tar.gz opensim-SC-b39de2425cac4c2a94a7fdd6c77100ef831d66b4.tar.bz2 opensim-SC-b39de2425cac4c2a94a7fdd6c77100ef831d66b4.tar.xz |
Merge branch 'master' into careminster
Conflicts:
OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs
OpenSim/Region/CoreModules/World/Land/LandObject.cs
OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs index 4ce3cf1..6246b57 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs | |||
@@ -481,6 +481,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
481 | public const int DEBUG_CHANNEL = 0x7FFFFFFF; | 481 | public const int DEBUG_CHANNEL = 0x7FFFFFFF; |
482 | public const int PUBLIC_CHANNEL = 0x00000000; | 482 | public const int PUBLIC_CHANNEL = 0x00000000; |
483 | 483 | ||
484 | // Constants for llGetObjectDetails | ||
485 | public const int OBJECT_UNKNOWN_DETAIL = -1; | ||
484 | public const int OBJECT_NAME = 1; | 486 | public const int OBJECT_NAME = 1; |
485 | public const int OBJECT_DESC = 2; | 487 | public const int OBJECT_DESC = 2; |
486 | public const int OBJECT_POS = 3; | 488 | public const int OBJECT_POS = 3; |
@@ -489,6 +491,14 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
489 | public const int OBJECT_OWNER = 6; | 491 | public const int OBJECT_OWNER = 6; |
490 | public const int OBJECT_GROUP = 7; | 492 | public const int OBJECT_GROUP = 7; |
491 | public const int OBJECT_CREATOR = 8; | 493 | public const int OBJECT_CREATOR = 8; |
494 | public const int OBJECT_RUNNING_SCRIPT_COUNT = 9; | ||
495 | public const int OBJECT_TOTAL_SCRIPT_COUNT = 10; | ||
496 | public const int OBJECT_SCRIPT_MEMORY = 11; | ||
497 | public const int OBJECT_SCRIPT_TIME = 12; | ||
498 | public const int OBJECT_PRIM_EQUIVALENCE = 13; | ||
499 | public const int OBJECT_SERVER_COST = 14; | ||
500 | public const int OBJECT_STREAMING_COST = 15; | ||
501 | public const int OBJECT_PHYSICS_COST = 16; | ||
492 | 502 | ||
493 | // Can not be public const? | 503 | // Can not be public const? |
494 | public static readonly vector ZERO_VECTOR = new vector(0.0, 0.0, 0.0); | 504 | public static readonly vector ZERO_VECTOR = new vector(0.0, 0.0, 0.0); |