diff options
author | Justin Clark-Casey (justincc) | 2012-02-04 01:04:00 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-02-04 01:04:00 +0000 |
commit | edc11a1d3978a863f36bce3e65ff417f4a3d039f (patch) | |
tree | 09904977ed919eb1907b584fec48cbce6ea50074 /OpenSim/Region | |
parent | Correct RC_* LSL constants used by llCastRay(). (diff) | |
download | opensim-SC_OLD-edc11a1d3978a863f36bce3e65ff417f4a3d039f.zip opensim-SC_OLD-edc11a1d3978a863f36bce3e65ff417f4a3d039f.tar.gz opensim-SC_OLD-edc11a1d3978a863f36bce3e65ff417f4a3d039f.tar.bz2 opensim-SC_OLD-edc11a1d3978a863f36bce3e65ff417f4a3d039f.tar.xz |
Add missing RCERR_UNKNOWN and RCERR_SIM_PERF_LOW LSL constants that would eventually be used by llCastRay(), though OpenSim does not use these yet.
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs | 2 |
1 files changed, 2 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 da1ef91..bb498b5 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs | |||
@@ -635,6 +635,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
635 | public static readonly LSLInteger RC_GET_ROOT_KEY = 2; | 635 | public static readonly LSLInteger RC_GET_ROOT_KEY = 2; |
636 | public static readonly LSLInteger RC_GET_LINK_NUM = 4; | 636 | public static readonly LSLInteger RC_GET_LINK_NUM = 4; |
637 | 637 | ||
638 | public static readonly LSLInteger RCERR_UNKNOWN = -1; | ||
639 | public static readonly LSLInteger RCERR_SIM_PERF_LOW = -2; | ||
638 | public static readonly LSLInteger RCERR_CAST_TIME_EXCEEDED = 3; | 640 | public static readonly LSLInteger RCERR_CAST_TIME_EXCEEDED = 3; |
639 | } | 641 | } |
640 | } | 642 | } |