LlGetRootPosition/ja - Second Life Wiki

LlGetRootPosition/ja

From Second Life Wiki

メインページ > LlGetRootPosition > LlGetRootPosition/ja
Jump to: navigation, search

関数: vector llGetRootPosition( );

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


 
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." );
  }
}
 

部分的な利用

 
//-- 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.
 

関連項目

関数

•  llGetLocalPos 子プリムの親プリムに対する相対的な位置を取得します
•  llGetPos プリムのグローバル位置を取得します
•  llSetPos プリムのグローバル位置を設定します
この項目はあなたにとって参考にならない項目ですか?もしかしたらLSL Wikiの関連した項目が参考になるかもしれません。