Convert the lsl list type into a struct. EXPERIMENTAL! This may affect

the llSetPrimitiveParams family of functions adversely. Please test!
This commit is contained in:
Melanie Thielker
2015-08-19 23:14:11 +02:00
parent 25335b0707
commit 662b59af83
4 changed files with 172 additions and 172 deletions

View File

@@ -416,7 +416,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
{
if (type == typeof(object[]))
{
object[] plist = (lslparm as LSL_List).Data;
object[] plist = ((LSL_List)lslparm).Data;
object[] result = new object[plist.Length];
for (int i = 0; i < plist.Length; i++)
{