missing file and take a debug message out

This commit is contained in:
UbitUmarov
2023-04-27 21:58:21 +01:00
parent 46831b086e
commit 02fd3b86fa
2 changed files with 8 additions and 1 deletions

View File

@@ -5906,7 +5906,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
int j = 0;
for (int i = start; i <= end; i += stride, j++)
res[j] = src.Data[i];
m_log.Debug($" test {size} {j}");
//m_log.Debug($" test {size} {j}");
return new LSL_List(res);
}

View File

@@ -1214,6 +1214,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
return m_LSL_Functions.llList2ListStrided(src, start, end, stride);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public LSL_List llList2ListSlice(LSL_List src, int start, int end, int stride, int stride_index)
{
return m_LSL_Functions.llList2ListSlice(src, start, end, stride, stride_index);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public LSL_Rotation llList2Rot(LSL_List src, int index)
{