add llListFindStrided; llListFindList change to be more as spec

This commit is contained in:
UbitUmarov
2023-04-29 11:06:35 +01:00
parent 7dbedecd88
commit 35962d8c39
4 changed files with 249 additions and 66 deletions

View File

@@ -1262,6 +1262,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
return m_LSL_Functions.llListFindList(src, test);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public LSL_Integer llListFindStrided(LSL_List src, LSL_List test, LSL_Integer lstart, LSL_Integer lend, LSL_Integer lstride)
{
return m_LSL_Functions.llListFindStrided(src, test, lstart, lend, lstride);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public LSL_List llListInsertList(LSL_List dest, LSL_List src, int start)
{