diff options
author | McCabe Maxsted | 2010-08-16 20:48:04 -0700 |
---|---|---|
committer | McCabe Maxsted | 2010-08-26 11:22:07 -0700 |
commit | 0f7e19f3e885ab97a98ab219329a7e0c2da5a20b (patch) | |
tree | 69a43ff5968f4c20d395a626114e2435e3575c59 /linden/indra/llcommon/lllslconstants.h | |
parent | Applied patch from #405: show avatar age in profile, Ansariel Hiller ported t... (diff) | |
download | meta-impy-0f7e19f3e885ab97a98ab219329a7e0c2da5a20b.zip meta-impy-0f7e19f3e885ab97a98ab219329a7e0c2da5a20b.tar.gz meta-impy-0f7e19f3e885ab97a98ab219329a7e0c2da5a20b.tar.bz2 meta-impy-0f7e19f3e885ab97a98ab219329a7e0c2da5a20b.tar.xz |
Fixed some missing constants in the script editor and added llGetLinkNumberOfSides
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llcommon/lllslconstants.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/linden/indra/llcommon/lllslconstants.h b/linden/indra/llcommon/lllslconstants.h index 7cd854f..fc5363f 100644 --- a/linden/indra/llcommon/lllslconstants.h +++ b/linden/indra/llcommon/lllslconstants.h | |||
@@ -48,6 +48,7 @@ const U32 AGENT_TYPING = 0x0200; | |||
48 | const U32 AGENT_CROUCHING = 0x0400; | 48 | const U32 AGENT_CROUCHING = 0x0400; |
49 | const U32 AGENT_BUSY = 0x0800; | 49 | const U32 AGENT_BUSY = 0x0800; |
50 | const U32 AGENT_ALWAYS_RUN = 0x1000; | 50 | const U32 AGENT_ALWAYS_RUN = 0x1000; |
51 | const U32 AGENT_AUTOPILOT = 0x2000; | ||
51 | 52 | ||
52 | const S32 LSL_REMOTE_DATA_CHANNEL = 1; | 53 | const S32 LSL_REMOTE_DATA_CHANNEL = 1; |
53 | const S32 LSL_REMOTE_DATA_REQUEST = 2; | 54 | const S32 LSL_REMOTE_DATA_REQUEST = 2; |
@@ -72,6 +73,9 @@ const S32 LSL_PRIM_TEXGEN = 22; | |||
72 | const S32 LSL_PRIM_POINT_LIGHT = 23; | 73 | const S32 LSL_PRIM_POINT_LIGHT = 23; |
73 | const S32 LSL_PRIM_CAST_SHADOWS = 24; | 74 | const S32 LSL_PRIM_CAST_SHADOWS = 24; |
74 | const S32 LSL_PRIM_GLOW = 25; | 75 | const S32 LSL_PRIM_GLOW = 25; |
76 | const S32 LSL_PRIM_TEXT = 26; | ||
77 | const S32 LSL_PRIM_NAME = 27; | ||
78 | const S32 LSL_PRIM_DESC = 28; | ||
75 | 79 | ||
76 | const S32 LSL_PRIM_TYPE_BOX = 0; | 80 | const S32 LSL_PRIM_TYPE_BOX = 0; |
77 | const S32 LSL_PRIM_TYPE_CYLINDER= 1; | 81 | const S32 LSL_PRIM_TYPE_CYLINDER= 1; |
@@ -201,5 +205,18 @@ const U32 CHANGED_OWNER = 0x80; | |||
201 | const U32 CHANGED_REGION = 0x100; | 205 | const U32 CHANGED_REGION = 0x100; |
202 | const U32 CHANGED_TELEPORT = 0x200; | 206 | const U32 CHANGED_TELEPORT = 0x200; |
203 | const U32 CHANGED_REGION_START = 0x400; | 207 | const U32 CHANGED_REGION_START = 0x400; |
208 | const U32 CHANGED_MEDIA = 0x800; | ||
209 | |||
210 | // Possible error results | ||
211 | const U32 LSL_STATUS_OK = 0; | ||
212 | const U32 LSL_STATUS_MALFORMED_PARAMS = 1000; | ||
213 | const U32 LSL_STATUS_TYPE_MISMATCH = 1001; | ||
214 | const U32 LSL_STATUS_BOUNDS_ERROR = 1002; | ||
215 | const U32 LSL_STATUS_NOT_FOUND = 1003; | ||
216 | const U32 LSL_STATUS_NOT_SUPPORTED = 1004; | ||
217 | const U32 LSL_STATUS_INTERNAL_ERROR = 1999; | ||
218 | |||
219 | // Start per-function errors below, starting at 2000: | ||
220 | const U32 LSL_STATUS_WHITELIST_FAILED = 2001; | ||
204 | 221 | ||
205 | #endif | 222 | #endif |