2008年06月20日
AV の身長を調べるスクリプト
LlGetAgentSize - lslWiki
-----
に一応あるんだけど 少し間違えてるから w 後 OwnerSay に変えました(自分だけが分かる)
-----
上記のページには
-----
Though no formal surveys have been done, the average avatar height seems to be about 2 meters; avatars are (too) tall in SL.
-----
と ^^
-----
に一応あるんだけど 少し間違えてるから w 後 OwnerSay に変えました(自分だけが分かる)
//これ cube にでもいれてクリックすれば 例えば Object: You are 2.168956m tall. のようにチャットされます
// File: measure_AV_height.lsl
// Date Author number of nodes
// 2008/6/20 walkinglint 6
//
default {
touch_start(integer num_detected) {
vector size;
size = llGetAgentSize(llDetectedKey(0));
llOwnerSay("You are " + (string)size.z + "m tall.");
}
}
-----
上記のページには
-----
Though no formal surveys have been done, the average avatar height seems to be about 2 meters; avatars are (too) tall in SL.
-----
と ^^
Posted by walkinglint at 22:02│Comments(0)
│walking のスクリプティング講座