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/Runtime | |
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 '')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs index ba1ade2..230c378 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs | |||
@@ -311,6 +311,13 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
311 | m_OSSL_Functions.osForceDetachFromAvatar(); | 311 | m_OSSL_Functions.osForceDetachFromAvatar(); |
312 | } | 312 | } |
313 | 313 | ||
314 | public LSL_List osGetNumberOfAttachments(LSL_Key avatar, LSL_List attachmentPoints) | ||
315 | { | ||
316 | return m_OSSL_Functions.osGetNumberOfAttachments(avatar, attachmentPoints); | ||
317 | } | ||
318 | |||
319 | #endregion | ||
320 | |||
314 | // Texture Draw functions | 321 | // Texture Draw functions |
315 | 322 | ||
316 | public string osMovePen(string drawList, int x, int y) | 323 | public string osMovePen(string drawList, int x, int y) |