Template:Needs Translation/
函数名
|
Function: vector llList2Vector( list src, integer index );
|
参数:
list src – List containing the element of interest
integer index – Index of the element of interest.
|
返回值:
返回一个位于 src 索引处的向量。
|
注意事项
|
*如果索引超出界限,脚本将继续执行,不会出现错误消息。
- 当用于从字符串类型转换时,它将导致零向量
- 一个真正的类型转换将解决这个问题: (vector) lllist2string (src,index) ;
- 不幸的是,如果它已经是一个向量类型,使用 lllist2string 将导致小数值被截断为小数点后六位。
- 在诸如 lllist2string (src,index)或(string) lllist2vector (src,index)之类的向量的任何字符串表示中,空格都会自动添加到逗号之后。当被 listen 接收时,确保不用空格进行语法分析。
|
示例
|
示例一
// Best viewed in Chat History (ctrl-h)
default
{
state_entry()
{
list my_list = ["a", 1, 2.0, <1,2,3>, <1,2,3,4>, llGetOwner()];
integer i = ~llGetListLength(my_list);
while(++i)
{
llOwnerSay("string=" + llList2String(my_list,i)
+ "\n integer=" + (string)llList2Integer(my_list,i)
+ "\n float=" + (string)llList2Float(my_list,i)
+ "\n vector=" + (string)llList2Vector(my_list,i)
+ "\n rot=" + (string)llList2Rot(my_list,i)
+ "\n key=" + (string)llList2Key(my_list,i) );
}
}
}
|