LlGetRegionName

来自人工智能助力教育知识百科
跳转至: 导航搜索

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() );
    }
}
相关函数
llRequestSimulatorData

llGetSimulatorHostname

llGetParcelDetails

llEscapeURL

相关事件