LlGetLinkName/zh-Hant
概要
函式: string llGetLinkName( integer linknum );
|
|
注意事項
- Prim的名稱長度限制為64位元組,若是超過此長度則會有名稱被截斷的情形發生。
- The only LINK_* flag that linknum currently supports is LINK_ROOT. SVC-600
- Use llGetLinkNumber() as the parameter to retreive the prim's name, not LINK_THIS.
範例
監聽頻道10中使用者給的prim名稱,再檢查物件中是否有名稱符合的prim <lsl> integer check_for_prim(string name) {
integer i = llGetNumberOfPrims(); for (; i >= 0; --i) { if (llGetLinkName(i) == name) { return TRUE; } } return FALSE;
} default {
state_entry() { llListen(10, "", llGetOwner(), ""); } listen(integer chan, string obj, key id, string msg) { if (check_for_prim(msg)) { llOwnerSay("found a linked prim named \"" + msg + "\""); } else { llOwnerSay("this object does not have any linked prims named \"" + msg + "\""); } }}</lsl>
筆記
Link Numbers
Each prim that makes up an object has an address, a link number. To access a specific prim in the object, the prim's link number must be known. In addition to prims having link numbers, avatars seated upon the object do as well.
- If an object consists of only one prim, and there are no avatars seated upon it, the (root) prim's link number is zero.
- However, if the object is made up of multiple prims or there is an avatar seated upon the object, the root prim's link number is one.
When an avatar sits on an object, it is added to the end of the link set and will have the largest link number. In addition to this, while an avatar is seated upon an object, the object is unable to link or unlink prims without unseating all avatars first.
Counting Prims & Avatars
There are two functions of interest when trying to find the number of prims and avatars on an object.
llGetNumberOfPrims()
- Returns the number of prims and seated avatars.llGetObjectPrimCount(llGetKey())
- Returns only the number of prims in the object but will return zero for attachments.
integer GetPrimCount() { //always returns only the number of prims
if(llGetAttached())//Is it attached?
return llGetNumberOfPrims();//returns avatars and prims but attachments can't be sat on.
return llGetObjectPrimCount(llGetKey());//returns only prims but won't work on attachments.
}
Errata
If a script located in a child prim erroneously attempts to access link 0, it will get or set the property of the linkset's root prim. This bug (BUG-5049) is preserved for broken legacy scripts.
參照
函式
• | llGetLinkNumber | – | Returns the link number of the prim the script is in. | |
• | llGetLinkKey | – | Gets the instance UUID of the link | |
• | llGetObjectName | – | Get the prims name | |
• | llSetObjectName | – | Set the prims name | |
• | llGetObjectDesc | – | Get the prims description | |
• | llSetObjectDesc | – | Set the prims description | |
• | llGetObjectDetails |
文章
• | Limits | – | SL limits and constrictions | |
• | Prim Attribute Overloading |
Deep Notes
All Issues
~ Search JIRA for related IssuesSVC-600 | llGetLinkKey returns the wrong result when passed LINK_THIS |