Difference between revisions of "LlGetColor"

From Second Life Wiki
Jump to navigation Jump to search
m (changed flag order to effect proper order in function category)
Line 1: Line 1:
{{LSL Function/color|none}}{{LSL_Function/face|face}}
{{LSL Function/color|none}}{{LSL_Function/face|face}}
{{LSL_Function
{{LSL_Function
|func_id=52|func_sleep=0.0|func_energy=10.0
|func=llGetColor|sort=GetColor
|func=llGetColor|sort=GetColor
|func_id=52|func_sleep=0.0|func_energy=10.0
|func_footnote
|func_footnote
|p1_type=integer|p1_name=face
|p1_type=integer|p1_name=face

Revision as of 01:17, 12 November 2007

Summary

Function: vector llGetColor( integer face );

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.
All Issues ~ Search JIRA for related Bugs

Examples

default
{
    state_entry()
    {
        llSay(0,"The color of side 1 is: "+(string)llGetColor(1) );
    }
}

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

Articles

•  Color in LSL

Deep Notes

Search JIRA for related Issues

Signature

function vector llGetColor( integer face );