Difference between revisions of "LlGetRootPosition/ja"

From Second Life Wiki
Jump to navigation Jump to search
(New page: {{LSL_Function/ja |func_id=268|func_sleep=0.0|func_energy=10.0 |func=llGetRootPosition|return_type=vector |func_footnote |func_desc |return_text=スクリプトが添付されたプリム...)
 
m (カテゴリ変更)
Line 38: Line 38:
|also_articles
|also_articles
|notes
|notes
|cat1=Movement
|cat1=Movement/ja
|cat2
|cat2
|cat3
|cat3
|cat4
|cat4
}}
}}

Revision as of 06:02, 10 April 2010

要約

関数: vector llGetRootPosition( );

スクリプトが添付されたプリムの親プリムのリージョン位置を vector で返します。

サンプル

<lsl> default{

 touch_start( integer vIntTouched ){
   string vStrMessage = "The prim with this scipt is ";
   if (llGetPos() != llGetRootPosition()){
     vStrMessage += "NOT ";
   }
   llSay( PUBLIC_CHANNEL, vStrMessage + "centered on the root prim." );
 }

}

</lsl>

便利なスニペット

<lsl> //-- there is no llSetLocalPos, this adds the functionality //-- to match llGetLocalPos() in a child prim fSetLocalPos( vector vPosOffset ){

 llSetPos( llGetRootPosition() + vPosOffset );

} //-- this will move a root prim by the offset, or set the //-- position of a child prim relative to the root. </lsl>

関連項目

関数

•  llGetLocalPos 子プリムの親プリムに対する相対的な位置を取得します
•  llGetPos プリムのグローバル位置を取得します
•  llSetPos プリムのグローバル位置を設定します

特記事項

Search JIRA for related Issues

Signature

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