diff options
author | SignpostMarv | 2012-09-01 02:39:49 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-09-04 00:03:43 +0100 |
commit | a858c5daee64223355de04b77746142be0f5795f (patch) | |
tree | 54011371ad2851243fa5cb4ecffc37ca07e528a0 /OpenSim/Region/ScriptEngine/Shared/Api/Interface | |
parent | formatting (diff) | |
download | opensim-SC_OLD-a858c5daee64223355de04b77746142be0f5795f.zip opensim-SC_OLD-a858c5daee64223355de04b77746142be0f5795f.tar.gz opensim-SC_OLD-a858c5daee64223355de04b77746142be0f5795f.tar.bz2 opensim-SC_OLD-a858c5daee64223355de04b77746142be0f5795f.tar.xz |
implementing a function to get the number of attachments worn
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Interface')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs index 06729ab..6db6443 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs | |||
@@ -192,6 +192,16 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces | |||
192 | /// <remarks>Nothing happens if the object is not attached.</remarks> | 192 | /// <remarks>Nothing happens if the object is not attached.</remarks> |
193 | void osForceDetachFromAvatar(); | 193 | void osForceDetachFromAvatar(); |
194 | 194 | ||
195 | /// <summary> | ||
196 | /// Returns a strided list of the specified attachment points and the number of attachments on those points. | ||
197 | /// </summary> | ||
198 | /// <param name="avatar">avatar UUID</param> | ||
199 | /// <param name="attachmentPoints">list of ATTACH_* constants</param> | ||
200 | /// <returns></returns> | ||
201 | LSL_List osGetNumberOfAttachments(LSL_Key avatar, LSL_List attachmentPoints); | ||
202 | |||
203 | #endregion | ||
204 | |||
195 | //texture draw functions | 205 | //texture draw functions |
196 | string osMovePen(string drawList, int x, int y); | 206 | string osMovePen(string drawList, int x, int y); |
197 | string osDrawLine(string drawList, int startX, int startY, int endX, int endY); | 207 | string osDrawLine(string drawList, int startX, int startY, int endX, int endY); |