Difference between revisions of "LlGetLocalPos/ja"
Jump to navigation
Jump to search
Mako Nozaki (talk | contribs) m (カテゴリ変更) |
|||
(3 intermediate revisions by 2 users not shown) | |||
Line 3: | Line 3: | ||
|func=llGetLocalPos|sort=GetLocalPos | |func=llGetLocalPos|sort=GetLocalPos | ||
|return_type=vector | |return_type=vector | ||
|func_footnote=ルートプリムから呼ばれる場合、[[llGetAttached|装着されたもの]]の[[Viewer coordinate frames#Attachments|装着箇所]] | |func_footnote=ルートプリムから呼ばれる場合、 [[llGetAttached/ja|装着されたもの]] の [[Viewer coordinate frames/ja#Attachments|装着箇所]] に相対的な位置を返す場合を除いて、 [[Viewer coordinate frames/ja#Region|リージョン位置]] を返します。 | ||
|func_desc | |func_desc | ||
|return_text= | |return_text=ルートとの相対 ( [[Viewer coordinate frames/ja#Local|ローカル]] ) 位置 | ||
|spec | |spec | ||
|caveats | |caveats | ||
|constants | |constants | ||
|examples= | |examples= | ||
< | <source lang="lsl2"> | ||
default | default | ||
{ | |||
touch_start( integer vIntTouched ) | touch_start( integer vIntTouched ) | ||
{ | |||
string vStrMessage = "The touched prim is "; | string vStrMessage = "The touched prim is "; | ||
if (llDetectedLinkNumber( 0 ) > 1){ | if (llDetectedLinkNumber( 0 ) > 1) | ||
vStrMessage += (string)llVecMag( llGetLocalPos() ) + "m from " | { | ||
vStrMessage += (string)llVecMag( llGetLocalPos() ) + "m from "; | |||
} | } | ||
llSay( 0, vStrMessage + "the root prim" ); | llSay( 0, vStrMessage + "the root prim" ); | ||
} | } | ||
} | } | ||
</ | </source> | ||
|helpers= | |helpers= | ||
llSetLocalPos関数はありません。 | |||
< | ローカルでの、自身のルートプリム位置を設定するには、このようにすべきでしょう。 | ||
<source lang="lsl2"> | |||
SetPositionLocalToCurrentPosition(vector local_position) | |||
{ | { | ||
llSetPos(llGetLocalPos() + (local_position * llGetLocalRot())); | |||
} | } | ||
</ | </source> | ||
|also_functions={{LSL DefineRow||[[llGetRootPosition/ja|llGetRootPosition]]|ルートプリムのグローバル位置を設定します}} | |also_functions={{LSL DefineRow||[[llGetRootPosition/ja|llGetRootPosition]]|ルートプリムのグローバル位置を設定します}} | ||
{{LSL DefineRow||[[llGetPos/ja|llGetPos]]|プリムのグローバル位置を取得します}} | {{LSL DefineRow||[[llGetPos/ja|llGetPos]]|プリムのグローバル位置を取得します}} | ||
Line 38: | Line 40: | ||
|also_articles | |also_articles | ||
|notes | |notes | ||
|cat1=Movement | |cat1=Movement | ||
|cat2=Prim | |cat2=Prim | ||
|cat3 | |cat3 | ||
|cat4 | |cat4 | ||
}} | }} |
Latest revision as of 12:49, 25 February 2016
LSL ポータル | 関数 | イベント | 型 | 演算子 | 定数 | 実行制御 | スクリプトライブラリ | カテゴリ別スクリプトライブラリ | チュートリアル |
要約
関数: vector llGetLocalPos( );サンプル
default
{
touch_start( integer vIntTouched )
{
string vStrMessage = "The touched prim is ";
if (llDetectedLinkNumber( 0 ) > 1)
{
vStrMessage += (string)llVecMag( llGetLocalPos() ) + "m from ";
}
llSay( 0, vStrMessage + "the root prim" );
}
}
便利なスニペット
llSetLocalPos関数はありません。 ローカルでの、自身のルートプリム位置を設定するには、このようにすべきでしょう。
SetPositionLocalToCurrentPosition(vector local_position)
{
llSetPos(llGetLocalPos() + (local_position * llGetLocalRot()));
}
関連項目
関数
• | llGetRootPosition | – | ルートプリムのグローバル位置を設定します | |
• | llGetPos | – | プリムのグローバル位置を取得します | |
• | llSetPos | – | プリムのグローバル位置を設定します |
特記事項
この項目はあなたにとって参考にならない項目ですか?もしかしたらLSL Wikiの関連した項目が参考になるかもしれません。