You are currently not logged in! Enter your authentication credentials below to log in. You need to have cookies enabled to log in.
This is an old revision of the document!
llSetLinkAlpha(integer link, float alpha, integer face)
An integer value defining the link number of the prim to be affected.
The following special link definition constants are available:-
A float value between 0.0 and 1.0 being the degree of opacity. 1.0 being fully opaque.
An integer value defining the face of the prim to be affected. ALL_SIDES affects all faces.
llSetLinkAlpha(3, 0.5, 6); // Will set face 6 of link 3 to 50% transparent llSetLinkAlpha(2, 0.0, ALL_SIDES); // Will make link 3 or this object disappear
// This will cause all other prims of the current object to blink on and off continuously (appear and disappear) integer flip; default { state_entry() { llSetTimerEvent(0.5); } timer() { flip = !flip; llSetLinkAlpha(LINK_ALL_OTHERS, flip, ALL_SIDES); } }