Difference between revisions of "LlDetectedRot/ja"

From Second Life Wiki
Jump to navigation Jump to search
(New page: {{LSL_Function/detected/ja|number|rot}} {{LSL_Function/ja |func_id=38|func_sleep=0.0|func_energy=10.0 |sort=DetectedRot |func=llDetectedRot|return_type=rotation|p1_type=integer|p1_name=num...)
 
m
Line 6: Line 6:
|func_footnote=Returns {{LSLG|ZERO_ROTATION/ja|<0.0, 0.0, 0.0, 1.0>}}が返るとき、'''number'''は検出されたオブジェクトの妥当な番号ではありません。
|func_footnote=Returns {{LSLG|ZERO_ROTATION/ja|<0.0, 0.0, 0.0, 1.0>}}が返るとき、'''number'''は検出されたオブジェクトの妥当な番号ではありません。
|func_desc
|func_desc
|return_text={{LSLGC|Detected/ja|検出}}したオブジェクトの'''number'''の回転
|return_text={{LSLGC|Detected/ja|検出}}したオブジェクトの回転
|spec
|spec
|caveats
|caveats

Revision as of 06:55, 7 November 2008

要約

関数: rotation llDetectedRot( integer number );

検出したオブジェクトの回転を rotation で返します。

• integer number 探知情報の番号

number には 負のインデックス を使用できません。 Returns <0.0, 0.0, 0.0, 1.0>が返るとき、numberは検出されたオブジェクトの妥当な番号ではありません。

仕様

llDetected* 関数はどこでも使用可能ですが、探知イベント (collision, collision_start, collision_end, sensor, touch, touch_start, touch_end) の中、または探知イベントで呼ばれた関数の中で呼び出されたときのみ使用可能な値を返します。

警告

  • number が正常なインデックス範囲を外れていても、スクリプトはエラー表示を出さずに処理を続けます。
  • llDetected* 関数が有効になるイベントは、常に少なくとも 1 個以上の探知結果を返します。
    • 何も探知されなかった場合、探知イベントは発生しません。[1]
    • 探知イベントの探知個数を表す引数は、最初は決して 1 未満にはなりません。[2]
All Issues ~ Search JIRA for related Bugs

サンプル

<lsl>//--// get compass facing of Avatar that touches this object //--//

//-- @@ = Contains code optimizations, see the following page for details //-- wiki.secondlife.com/wiki/User:Void_Singer/Optimizations

//-- list of compass directions starting at North, rotated clockwise

list gLstCompassPoints = [ "North", "NorthEast", "East", "SouthEast", "South", "SouthWest", "West", "NorthWest" ];

//-- convert rotation to z-axis compass direction

string CompassDirection( rotation rRotBase ) {

 integer iCountCompassPoints = llGetListLength(gLstCompassPoints);
  //-- convert rotation to a direction
 vector vDirection = <0.0, 1.0, 0.0> / rRotBase;
  //-- take the direction and determine the z rotation
 float fAngle = llAtan2(vDirection.x, vDirection.y);
  //-- take the angle and find the compass point
 integer iCompassPoint = llRound(fAngle * iCountCompassPoints / TWO_PI);
  //-- convert to string
 return llList2String( gLstCompassPoints, iCompassPoint );

}

default{

 state_entry()
 {
   llSay( 0, "Touch me to get your compass facing" );
 }
 touch_start( integer vIntTouchCount )
 {
   integer vIntCounter = 0;
   do
   {
     llSay( 0,
            llDetectedName( vIntCounter )
            + " is facing "
             //-- next line gets avatar rotation and converts to compass direction
            + CompassDirection( llDetectedRot( vIntCounter ) ) );
   } while ( ++vIntCounter < vIntTouchCount );
 }
}</lsl>

関連項目

記事

•  検出

特記事項

Search JIRA for related Issues

脚注

  1. ^ 例外は no_sensor ですが、ここでは llDetected* 関数は有効にはなりません。
  2. ^ 他のあらゆるイベント引数と同じように、ユーザは初期値を上書きすることができます。

Signature

function rotation llDetectedRot( integer number );
この翻訳は 原文 と比べて古いですか?間違いがありますか?読みにくいですか?みんなで 修正 していきましょう! (手順はこちら)
この項目はあなたにとって参考にならない項目ですか?もしかしたらLSL Wikiの関連した項目が参考になるかもしれません。