LlEdgeOfWorld/ja
< LlEdgeOfWorld
Jump to navigation
Jump to search
Revision as of 17:36, 20 September 2008 by Asuka Neely (talk | contribs) (New page: {{LSL_Function/ja |func=llEdgeOfWorld |sort=EdgeOfWorld |func_id=205|func_sleep=0.0|func_energy=10.0 |return_type=integer |p1_type=vector|p1_name=pos|p2_type=vector|p2_name=dir |func_footn...)
LSL ポータル | 関数 | イベント | 型 | 演算子 | 定数 | 実行制御 | スクリプトライブラリ | カテゴリ別スクリプトライブラリ | チュートリアル |
要約
関数: integer llEdgeOfWorld( vector pos, vector dir );サンプル
<lsl> //--// Tells if there are neighboring sims on touch //--//
default{
touch_start( integer vIntTouched ){ vector vPosObject = llGetPos(); if (!llEdgeOfWorld( vPosObject, <0.0, 1.0, 0.0> )){ llOwnerSay( "There is a Sim to the North" ); } if (!llEdgeOfWorld( vPosObject, <1.0, 0.0, 0.0> )){ llOwnerSay( "There is a Sim to the East" ); } if (!llEdgeOfWorld( vPosObject, <0.0, -1.0, 0.0> )){ llOwnerSay( "There is a Sim to the South" ); } if (!llEdgeOfWorld( vPosObject, <-1.0, 0.0, 0.0> )){ llOwnerSay( "There is a Sim to the West" ); } }
}
</lsl>特記事項
この項目はあなたにとって参考にならない項目ですか?もしかしたらLSL Wikiの関連した項目が参考になるかもしれません。