LlGetSimStats

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

Template:Needs Translation/


函数名
Function: float llGetSimStats( integer stat_type );
参数:integer stat_type – SIM_STAT_* flag
返回值:返回一个浮点数,该浮点数是所请求的统计量。
注意事项
无(表格参见附录)
示例
示例1
default
{
    touch_start(integer num_detected)
    {
        float pct_chars_stepped = llGetSimStats(SIM_STAT_PCT_CHARS_STEPPED);
        llSay(0,
            "The percentage of pathfinding characters updated each frame was "
            + (string)pct_chars_stepped + "averaged over the last minute. The "
            + "value corresponds to the 'Characters Updated' stat in the "
            + "viewer's Statistics Bar. ");
    }
}
相关函数
llAbs – integer version of llFabs
相关事件

附录:(表格)

Name Possible Return Description
SIM_STAT_PCT_CHARS_STEPPED 0 [0.0, 100.0] 寻路字符的百分比更新了每个帧,平均在最后一分钟。该值对应于查看器统计栏中的“字符更新”数据。