LlGetColor - Second Life Wiki

LlGetColor

From Second Life Wiki

Jump to: navigation, search

Function: vector llGetColor( integer face );

52 Function ID
0.0 Delay
10.0 Energy

Returns a vector that is the color on face.

• integer face face number or ALL_SIDES


If face is ALL_SIDES then the function works on all sides.

Caveats

  • The function silently fails if its face value indicates a face that does not exist
  • Using ALL_SIDES will return the average of the side colors.

Examples

//Tells the owner the color on all sides
default
{
    state_entry()
    {
        integer i = 0;
        integer max = llGetNumberOfSides();
        while(i < max)
        {
            llSay(0,"Face "+(string)i+" color is " + (string)llGetColor(i));
            ++i;
        }
    }
}

See Also

Functions

•  llGetAlpha Gets the prim's alpha
•  llSetAlpha Sets the prim's alpha
•  llSetColor Sets the prim's color
•  llSetLinkColor Sets link's color
•  llSetLinkAlpha Sets link's alpha
•  llGetNumberOfSides Gets the number of faces on the prim

Articles

•  Color in LSL