Ty(讨论 | 贡献)2020年8月22日 (六) 02:38的版本
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
Template:Needs Translation/
函数名
|
Function: list llListInsertList( list dest, list src, integer start );
|
参数:
list dest
list src
integer start
|
返回值:
返回一个列表,其中包含 dest 中的所有元素,但在位置开始处插入 src 中的元素。
|
注意事项
|
如果开始超出界限,脚本将继续执行,不会出现错误消息
|
示例
|
示例一
list numbers = [3, "three", 2, "two", 1, "one"];
default
{
state_entry()
{
llOwnerSay(llDumpList2String(numbers, ","));
// Object: 3,three,2,two,1,one
integer index = llListFindList(numbers, [2]);
if (index != -1)
{
numbers = llListInsertList(numbers, [2.5, "two and a half"], index);
llOwnerSay(llDumpList2String(numbers, ","));
// Object: 3,three,2.500000,two and a half,2,two,1,one
}
}
}
|