Template:Needs Translation/
函数名
|
Function: integer llDetectedLinkNumber( integer number );
|
参数:integer number–Index of detection information number does not support negative indexes.
|
返回值:Returns the link_number (an integer) of the triggered event. If not supported by the event, returns zero.
|
注意事项
|
注意事项
- llDetectedLinkNumber will return 0 in collision_start and collision_end events of VolumeDetect objects (SVC-2996).
- If number is out of bounds this function returns 0 and the script continues to execute without an error message.
- Events that enable the llDetected* functions always return at least one detected item.
- Detection events are not raised if there is nothing detected.[1]
- The detection event's items detected parameter is initially never less than 1.[2]
|
示例
|
default
{
// Drop this script into the root prim of of a build
// Touch any prim to learn its link number
touch_start(integer num_detected)
{
llOwnerSay("Link number clicked: " + (string)llDetectedLinkNumber(0) );
}
}
|