Difference between revisions of "LlGetColor"

From Second Life Wiki
Jump to navigation Jump to search
m
Line 9: Line 9:
|spec
|spec
|caveats
|caveats
|examples=<pre>
|examples=
<lsl>//Tells the owner the color on all sides
default
default
{
{
     state_entry()
     state_entry()
     {
     {
         llSay(0,"The color of side 1 is: "+(string)llGetColor(1) );
         integer i = 0;
        integer max = llGetNumberOfSides();
        while(i < max)
        {
            llSay(0,"Face "+(string)i+" color is " + (string)llGetColor(i));
            ++i;
        }
     }
     }
}
}</lsl>
</pre>
<pre>
//Tells the owner the colors on 6 sides
default
{
    state_entry()
    {
        integer i;
        for( i = 1; i < 7; i++ )
        llSay(0,"My alpha is " + (string)llGetColor(i));
    }
}
</pre>
|helpers
|helpers
|also_header
|also_header
Line 41: Line 35:
{{LSL DefineRow||[[llSetLinkColor]]|Sets link's color}}
{{LSL DefineRow||[[llSetLinkColor]]|Sets link's color}}
{{LSL DefineRow||[[llSetLinkAlpha]]|Sets link's alpha}}
{{LSL DefineRow||[[llSetLinkAlpha]]|Sets link's alpha}}
{{LSL DefineRow||[[llGetNumberOfSides]]|Gets the number of faces on the prim}}
|also_events
|also_events
|also_articles
|also_articles

Revision as of 03:52, 14 December 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

<lsl>//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;
       }
   }
}</lsl>

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

Deep Notes

Search JIRA for related Issues

Signature

function vector llGetColor( integer face );