LlSetAlpha/ja
From Second Life Wiki
例
float cloakSpeed = .1; default { touch_start(integer total_number) { integer x; float xf; for (x=9; x>0; x--) { xf = x * .1; llSleep(cloakSpeed); llSetAlpha(xf,ALL_SIDES); } state cloaked; } } state cloaked { touch_start(integer total_number) { integer x; float xf; for (x=1; x<11; x++) { xf = x * .1; llSleep(cloakSpeed); llSetAlpha(xf,ALL_SIDES); } state default; } }
関連項目
イベント
| • | changed | – | CHANGED_COLOR |
関数
| • | llGetAlpha | – | プリムのアルファを取得します | |
| • | llGetColor | – | プリムの色を取得します | |
| • | llSetColor | – | プリムの色を設定します | |
| • | llSetLinkColor | – | リンクしているプリムの色を設定します | |
| • | llSetLinkAlpha | – | リンクしているプリムのアルファを設定します |
項目
| • | Translucent Color |

