Template:Needs Translation/
函数名
|
函数:string llGetRegionName( );
|
参数:
|
返回值:返回当前区域名称的字符串
|
示例
|
// 在标准客户机的映射中说明“将SLURL复制到剪贴板”会说什么
string wwGetSLUrl()
{
string globe = "http://maps.secondlife.com/secondlife";
string region = llGetRegionName();
vector pos = llGetPos();
string posx = (string)llRound(pos.x);
string posy = (string)llRound(pos.y);
string posz = (string)llRound(pos.z);
return (globe + "/" + llEscapeURL(region) +"/" + posx + "/" + posy + "/" + posz);
}
default
{
state_entry()
{
llOwnerSay( wwGetSLUrl() );
}
}
|