$nav ===== Function: llSetLinkColor ===== llSetLinkColor(integer link, vector color, integer face) Sets the color of a face or all faces in the current prim. ===== Parameters ===== === link === $linkparam === color === $colorparam === face === $faceparam ===== Short examples ===== llSetLinkColor(LINK_SET, <0, 0.25, 0>, ALL_SIDES); // sets the color of the whole object to dark green llSetLinkColor(2, <1, 0, 0>, 3); // will set face 3 of prim number 2 of the object to red ===== See also ===== * $lfn[llSetColor] to set the color of a face on just the current prim. * $lfn[llSetAlpha] to change the opacity of a face in the current prim, or $lfn[llSetLinkAlpha] to change it for any prim within the object. * $lfn[llSetTexture] to change the texture of a face in the current prim, or $lfn[llSetLinkTexture] to change it for any prim within the object. * $lfn[llSetTextureAnim] animates a texture, which can be used to simulate rapidly changing colors with low lag. * The $lfn[PrimitiveParams/|PrimitiveParams] family of functions, with $lct[PRIM_COLOR], allows changing color and alpha at the same time.