Difference between revisions of "LlSetColor/ja"
Jump to navigation
Jump to search
Asuka Neely (talk | contribs) m |
Mako Nozaki (talk | contribs) m |
||
Line 5: | Line 5: | ||
|p1_type=vector|p1_name=color|p2_type=integer|p2_name=face | |p1_type=vector|p1_name=color|p2_type=integer|p2_name=face | ||
|func_footnote | |func_footnote | ||
|func_desc='''face''' | |func_desc='''face''' の '''color''' を設定します。 | ||
|return_text | |return_text | ||
|spec | |spec | ||
Line 18: | Line 18: | ||
touch_start(integer num) | touch_start(integer num) | ||
{ | { | ||
if(~face)// | if(~face)//おおざっぱな -1 チェック | ||
llSetColor(color, face); // | llSetColor(color, face); //色を復元します | ||
face = (face + 1) % llGetNumberOfSides(); // | face = (face + 1) % llGetNumberOfSides(); //面番号をインクリメントして保持します | ||
color = llGetColor(face); // | color = llGetColor(face); //面の色を保存します | ||
llSetColor(<0.5, 0.0, 0.0>, face );// | llSetColor(<0.5, 0.0, 0.0>, face );//面の色を変更します | ||
} | } | ||
} | } | ||
Line 28: | Line 28: | ||
|helpers | |helpers | ||
|also_functions= | |also_functions= | ||
{{LSL DefineRow|| | {{LSL DefineRow||{{LSLG/ja|llGetAlpha}}|プリムの透過度を取得します}} | ||
{{LSL DefineRow|| | {{LSL DefineRow||{{LSLG/ja|llSetAlpha}}|プリムの透過度を設定します}} | ||
{{LSL DefineRow|| | {{LSL DefineRow||{{LSLG/ja|llGetColor}}|プリムの色を取得します}} | ||
{{LSL DefineRow|| | {{LSL DefineRow||{{LSLG/ja|llSetLinkColor}}|リンクプリムの色を設定します}} | ||
{{LSL DefineRow|| | {{LSL DefineRow||{{LSLG/ja|llSetLinkAlpha}}|リンクプリムの透過度を設定します}} | ||
|also_tests | |also_tests | ||
|also_events= | |also_events= | ||
{{LSL DefineRow|| | {{LSL DefineRow||{{LSLG/ja|changed}}|{{LSLG/ja|CHANGED_COLOR}}}} | ||
|also_articles | |also_articles | ||
|notes | |notes |
Revision as of 00:44, 9 May 2010
LSL ポータル | 関数 | イベント | 型 | 演算子 | 定数 | 実行制御 | スクリプトライブラリ | カテゴリ別スクリプトライブラリ | チュートリアル |
要約
関数: llSetColor( vector color, integer face );初心者にありがちな注意点
llSetColor はプリムの指定面、あるいはプリムの全ての色を変更します。
例:llSetColor(<r, g, b>, ALL_SIDES);
r, g, b: 赤・緑・青、の値で、それぞれが 0.0 から 1.0 の範囲をとります。
続きを読む: 初心者にありがちな注意点
警告
- face が存在しない面を指している場合、関数はエラーを出さずに復帰します。
サンプル
<lsl> integer face = -1; vector color = <1.0, 1.0, 1.0>;
default {
touch_start(integer num) { if(~face)//おおざっぱな -1 チェック llSetColor(color, face); //色を復元します face = (face + 1) % llGetNumberOfSides(); //面番号をインクリメントして保持します color = llGetColor(face); //面の色を保存します llSetColor(<0.5, 0.0, 0.0>, face );//面の色を変更します }
}
</lsl>関連項目
イベント
• | changed | – | CHANGED_COLOR |
関数
• | llGetAlpha | – | プリムの透過度を取得します | |
• | llSetAlpha | – | プリムの透過度を設定します | |
• | llGetColor | – | プリムの色を取得します | |
• | llSetLinkColor | – | リンクプリムの色を設定します | |
• | llSetLinkAlpha | – | リンクプリムの透過度を設定します |
記事
• | LSL での色 |
特記事項
この項目はあなたにとって参考にならない項目ですか?もしかしたらLSL Wikiの関連した項目が参考になるかもしれません。