Template:Needs Translation/
函数名
|
Function: float llGetRegionFPS( );
|
参数:无
|
返回值:返回一个浮点数,即每秒的平均区域帧数。
|
注意事项
|
区域FPS当前的上限是每秒45.0帧,所以这个函数不会返回大于45.0的帧
|
示例
|
// 一个区域信息脚本的开头。
string region;
string sim;
default
{
state_entry()
{
llSetTimerEvent(1.0);
}
timer()
{
string here = llGetRegionName();
if(region != here)
{
sim = llGetSimulatorHostname();
region = here;
}
llSetText(
" REGION NAME : " + region +
"\n SIM HOSTNAME : " + sim +
"\nTIME DIALATION : " + (string)llGetRegionTimeDilation() +
"\n REGION FPS : " + (string)llGetRegionFPS(),
<0,1,0>, 1.0);
}
}
|