aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-02-04 01:04:00 +0000
committerJustin Clark-Casey (justincc)2012-02-04 01:04:00 +0000
commitedc11a1d3978a863f36bce3e65ff417f4a3d039f (patch)
tree09904977ed919eb1907b584fec48cbce6ea50074 /OpenSim
parentCorrect RC_* LSL constants used by llCastRay(). (diff)
downloadopensim-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')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs2
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}