Difference between revisions of "LlGetTimeOfDay/ja"
Jump to navigation
Jump to search
Mako Nozaki (talk | contribs) |
|||
Line 9: | Line 9: | ||
|caveats | |caveats | ||
|constants | |constants | ||
|examples=< | |examples=<source lang="lsl2">//太陽が固定されていない限り、時間は 4 時間未満となります。 | ||
default | default | ||
{ | { | ||
Line 20: | Line 20: | ||
llOwnerSay((string) tod + " seconds which is "+(string) hours+"h "+(string) minutes+"m"); | llOwnerSay((string) tod + " seconds which is "+(string) hours+"h "+(string) minutes+"m"); | ||
} | } | ||
}</ | }</source> | ||
|helpers | |helpers | ||
|also_functions= | |also_functions= |
Latest revision as of 13:47, 25 February 2016
LSL ポータル | 関数 | イベント | 型 | 演算子 | 定数 | 実行制御 | スクリプトライブラリ | カテゴリ別スクリプトライブラリ | チュートリアル |
要約
関数: llGetTimeOfDay( );サンプル
//太陽が固定されていない限り、時間は 4 時間未満となります。
default
{
touch_start(integer total_number)
{
float tod = llGetTimeOfDay( );
llOwnerSay("Time since last region restart or SL midnight (based on SL 4 hour day):");
integer hours = ((integer)tod / 3600) ;
integer minutes = ((integer)tod / 60) - (hours * 60);
llOwnerSay((string) tod + " seconds which is "+(string) hours+"h "+(string) minutes+"m");
}
}
関連項目
関数
• | llGetSunDirection |
特記事項
この項目はあなたにとって参考にならない項目ですか?もしかしたらLSL Wikiの関連した項目が参考になるかもしれません。