Difference between revisions of "LlGetColor"

From Second Life Wiki
Jump to navigation Jump to search
Line 23: Line 23:
|also_articles
|also_articles
|also_footer
|also_footer
|also_functions={{LSL DefineRow||[[llSetColor]]|Sets the prims color}}
|also_functions=
{{LSL DefineRow||[[llGetAlpha]]|Gets the prims alpha}}
{{LSL DefineRow||[[llSetAlpha]]|Sets the prims alpha}}
{{LSL DefineRow||[[llSetColor]]|Sets the prims color}}
|also_events
|also_events
|also_articles
|also_articles

Revision as of 23:57, 27 February 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 prims alpha
•  llSetAlpha Sets the prims alpha
•  llSetColor Sets the prims color

Articles

•  Color in LSL

Deep Notes

Search JIRA for related Issues

Signature

function vector llGetColor( integer face );