“LlGetRegionDayLength”的版本间的差异
(创建页面,内容为“{{LSL Header|ml=*}}{{LSLC|Keywords}}{{LSLC|Flow Control}}{{LSLC|}} {{函数详情 |函数名 = Function: integer llGetRegionDayLength( ); |参数= 参数: 无 |…”) |
|||
第36行: | 第36行: | ||
|相关函数=[[llGetDayLength]] | |相关函数=[[llGetDayLength]] | ||
+ | |||
[[llGetDayOffset]] | [[llGetDayOffset]] | ||
+ | |||
[[llGetMoonDirection]] | [[llGetMoonDirection]] | ||
+ | |||
[[llGetMoonRotation]] | [[llGetMoonRotation]] | ||
+ | |||
[[llGetSunDirection]] | [[llGetSunDirection]] | ||
+ | |||
[[llGetSunRotation]] | [[llGetSunRotation]] | ||
+ | |||
[[llGetRegionDayLength]] | [[llGetRegionDayLength]] | ||
+ | |||
[[llGetRegionDayOffset]] | [[llGetRegionDayOffset]] | ||
+ | |||
[[llGetRegionMoonDirection]] | [[llGetRegionMoonDirection]] | ||
+ | |||
[[llGetRegionMoonRotation]] | [[llGetRegionMoonRotation]] | ||
+ | |||
[[llGetRegionSunDirection]] | [[llGetRegionSunDirection]] | ||
+ | |||
[[llGetRegionSunRotation]] | [[llGetRegionSunRotation]] | ||
}} | }} |
2020年5月31日 (日) 16:25的最新版本
首页 | 函数 | 事件 | 类型 | 操作符 | 常数 | Flow Control | Script Library | Categorized Library | Tutorials |
函数名 |
---|
Function: integer llGetRegionDayLength( ); |
参数: 无 |
返回值:返回应用于当前区域的日循环中的秒数。llGetDayLength返回当前包裹的秒数,llGetRegionDayLength是应用于整个区域的日循环中的秒数。
返回整数 |
注意事项 |
---|
无 |
示例 |
---|
示例1
// 将一天中的表观时间打印为HH:MM(%),就像查看器中的环境窗口一样。 // 一天中的时间是0到1之间的小数,0是午夜,0.5是中午 string printTimeOfDay(float dayFraction) { integer hours = (integer)(dayFraction * 24); integer minutes = (integer)(dayFraction * 24 * 60) % 60; integer percent = (integer)(dayFraction * 100); return (string)hours + ":" + llGetSubString((string)(100+minutes), 1, 2) + " (" + (string)percent + "%)"; } default { state_entry() { llSetTimerEvent(5); } timer() { float timeOfDay = (llGetUnixTime() + llGetRegionDayOffset()) % llGetRegionDayLength() * 1.0 / llGetRegionDayLength(); llSetText(printTimeOfDay(timeOfDay), <1,1,0>, 1); } } |
相关函数 |
---|
llGetDayLength |
相关事件 |
---|
无 |