You are currently not logged in! Enter your authentication credentials below to log in. You need to have cookies enabled to log in.
llSetAlpha(float alpha, integer face)
Sets the opacity (also called alpha) of a face or all faces of the current prim.
A float value between 0.0 and 1.0 being the degree of opacity. 1.0 being fully opaque.
llSetLinkAlpha
.llSetAlpha(0.5, ALL_SIDES); // will set all faces of the current prim to semi-opaque
default { state_entry() { llSetAlpha(0.0, 2); // Will make face 2 of this prim go transparent } }
llSetLinkAlpha
to change the opacity on any chosen prim in the current object.llSetColor
to set the color of a face in the current prim, or llSetLinkColor
to set it for any chosen prim.