mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 03:15:41 +08:00
missing file and take a debug message out
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user