Difference between revisions of "PRIM SIZE/ja"
Jump to navigation
Jump to search
Asuka Neely (talk | contribs) (New page: <onlyinclude>{{#if: {{#vardefine:size_const|{{LSL Const/ja|PRIM_SIZE|integer|7|c=プリムの大きさを{{GetSet|{{{1|}}}|取得|設定|/}}するのに用いられます}}}} {{#vardefin...) |
Mako Nozaki (talk | contribs) |
||
Line 3: | Line 3: | ||
{{#vardefine:size_const|{{LSL Const/ja|PRIM_SIZE|integer|7|c=プリムの大きさを{{GetSet|{{{1|}}}|取得|設定|/}}するのに用いられます}}}} | {{#vardefine:size_const|{{LSL Const/ja|PRIM_SIZE|integer|7|c=プリムの大きさを{{GetSet|{{{1|}}}|取得|設定|/}}するのに用いられます}}}} | ||
{{#vardefine:p_size_desc| | {{#vardefine:p_size_desc|x, y, z それぞれについて 0.01 ~ 10.0 の範囲}} | ||
}}</onlyinclude>{{#if: | }}</onlyinclude>{{#if: | ||
Line 11: | Line 11: | ||
|type=integer | |type=integer | ||
|value=7 | |value=7 | ||
|desc= | |desc=プリムの大きさを取得設定します。 | ||
|pa={{LSL Constant/List/ja|i_front=[ {{#var:size_const}}, |i_end= ] | |pa={{LSL Constant/List/ja|i_front=[ {{#var:size_const}}, |i_end= ] | ||
|text= | |text={{LSLG/ja|llSetPrimitiveParams}} や {{LSLG/ja|llSetLinkPrimitiveParams}} と一緒に使用されたとき | ||
|i1_type=vector|i1_name=size | |i1_type=vector|i1_name=size | ||
|toc=llSetPrimitiveParams | |toc=llSetPrimitiveParams | ||
}} | }} | ||
|pb={{LSL Constant/List/ja|i_front= | |pb={{LSL Constant/List/ja|i_front={{LSLG/ja|llGetPrimitiveParams}}([ {{#var:size_const}}|i_end= ]);| | ||
|r_front=[ |r_end= ] | |r_front=[ |r_end= ] のリストを返します。 | ||
|text | |text | ||
|r1_type=vector|r1_name=size | |r1_type=vector|r1_name=size | ||
|toc=llGetPrimitiveParams | |toc=llGetPrimitiveParams | ||
}} | }} | ||
|examples | |examples= | ||
<lsl>//プリムのサイズと回転を変更します。 | |||
default | |||
{ | |||
touch_start(integer total_number) | |||
{ | |||
llSetPrimitiveParams([ | |||
PRIM_SIZE, <0.25,0.5,1.0>, | |||
PRIM_ROTATION, <1.0, 0.0, 0.0, 0.0> | |||
]); | |||
} | |||
} </lsl> | |||
|constants= | |constants= | ||
|functions= | |functions= | ||
{{LSL DefineRow|| | {{LSL DefineRow||{{LSLG/ja|llGetPrimitiveParams}}|}} | ||
{{LSL DefineRow|| | {{LSL DefineRow||{{LSLG/ja|llSetPrimitiveParams}}|}} | ||
{{LSL DefineRow|| | {{LSL DefineRow||{{LSLG/ja|llSetLinkPrimitiveParams}}|}} | ||
{{LSL DefineRow|| | {{LSL DefineRow||{{LSLG/ja|llGetScale}}|}} | ||
{{LSL DefineRow|| | {{LSL DefineRow||{{LSLG/ja|llSetScale}}|}} | ||
|events= | |events= | ||
|location | |location |
Revision as of 04:35, 15 June 2010
LSL ポータル | 関数 | イベント | 型 | 演算子 | 定数 | 実行制御 | スクリプトライブラリ | カテゴリ別スクリプトライブラリ | チュートリアル |
llSetPrimitiveParams
[ PRIM_SIZE, vector size ]• vector | size | – | x, y, z それぞれについて 0.01 ~ 10.0 の範囲 |
llSetPrimitiveParams や llSetLinkPrimitiveParams と一緒に使用されたとき
llGetPrimitiveParams
llGetPrimitiveParams([ PRIM_SIZE ]);[ vector size ] のリストを返します。
• vector | size | – | x, y, z それぞれについて 0.01 ~ 10.0 の範囲 |
関連記事
サンプル
<lsl>//プリムのサイズと回転を変更します。 default {
touch_start(integer total_number) { llSetPrimitiveParams([ PRIM_SIZE, <0.25,0.5,1.0>, PRIM_ROTATION, <1.0, 0.0, 0.0, 0.0> ]); }
} </lsl>