mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
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:
@@ -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++)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user