Touch end/ja

From Second Life Wiki
< Touch end
Revision as of 05:31, 29 September 2008 by Asuka Neely (talk | contribs)
Jump to navigation Jump to search

説明

イベント: touch_end( integer num_detected ){ ; }

エージェントがタスク上でのクリックを停止するときに作動します。

• integer num_detected

サンプル

探知されたエージェントのキーの取得に、0からnum_detected - 1の数値を使うことができます。 <lsl>float t;

default {

   touch_start(integer num_detected)
   {
       t = llGetTime();
   }
   touch_end(integer num_detected)
   {
       llOwnerSay((string)(llGetTime() - t) + " seconds between touch_start and touch_end");
   }

}</lsl>

参考情報

イベント

•  touch_start
•  touch

関数

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