Difference between revisions of "CHANGED COLOR"

From Second Life Wiki
Jump to navigation Jump to search
m (example now in lsl syntax highlighting...)
m (<lsl> tag to <source>)
(One intermediate revision by one other user not shown)
Line 5: Line 5:
|desc=Prim color or alpha parameters have changed
|desc=Prim color or alpha parameters have changed
|examples=
|examples=
<lsl>
<source lang="lsl2">
default
default
{
{
Line 17: Line 17:
     }
     }
}
}
</lsl>
</source>
|functions=
|functions=
{{LSL DefineRow||[[llSetAlpha]]|Sets the prim's alpha}}
{{LSL DefineRow||[[llSetAlpha]]|Sets the prim's alpha}}
Line 25: Line 25:
{{LSL DefineRow||[[llSetLinkColor]]|Sets link's color}}
{{LSL DefineRow||[[llSetLinkColor]]|Sets link's color}}
{{LSL DefineRow||[[llSetLinkPrimitiveParams]]|Sets link's parameters}}
{{LSL DefineRow||[[llSetLinkPrimitiveParams]]|Sets link's parameters}}
|constants=
{{LSL DefineRow||[[PRIM_COLOR]]|}}
|events=
|events=
{{LSL DefineRow||[[changed]]|}}
{{LSL DefineRow||[[changed]]|}}

Revision as of 16:14, 22 January 2015

Description

Constant: integer CHANGED_COLOR = 0x2;

The integer constant CHANGED_COLOR has the value 0x2

Prim color or alpha parameters have changed

Related Articles

Constants

•  PRIM_COLOR

Functions

•  llSetAlpha Sets the prim's alpha
•  llSetColor Sets the prim's color
•  llSetPrimitiveParams Sets the prim's parameters
•  llSetLinkAlpha Sets link's alpha
•  llSetLinkColor Sets link's color
•  llSetLinkPrimitiveParams Sets link's parameters

Events

•  changed

Examples

default
{
    changed(integer change)
    {

        if (change & CHANGED_COLOR) //note that it's & and not &&... it's bitwise!
        {
            llOwnerSay("The color or alpha changed.");
        }
    }
}

Deep Notes

Search JIRA for related Issues

Signature

integer CHANGED_COLOR = 0x2;