Difference between revisions of "CHANGED COLOR"
Jump to navigation
Jump to search
(Add Blinn-Phong terminology to page following PBR release.) |
|||
(9 intermediate revisions by 5 users not shown) | |||
Line 3: | Line 3: | ||
|type=integer | |type=integer | ||
|value={{LSL Hex|0x2}} | |value={{LSL Hex|0x2}} | ||
|desc=Prim color or alpha parameters have changed | |desc=Prim [[PBR_Materials#Nomenclature_changes|Blinn-Phong]] color or alpha parameters have changed | ||
|examples | |examples= | ||
<source lang="lsl2"> | |||
default | |||
{ | |||
changed(integer change) | |||
{ | |||
if (change & CHANGED_COLOR) //note that it's & and not &&... it's bitwise! | |||
{ | |||
llOwnerSay("The color or alpha changed."); | |||
} | |||
} | |||
} | |||
</source> | |||
|functions= | |functions= | ||
{{LSL DefineRow||[[llSetAlpha]]|Sets the prim's alpha}} | {{LSL DefineRow||[[llSetAlpha]]|Sets the prim's alpha}} | ||
{{LSL DefineRow||[[llSetColor]]|Sets the prim's color}} | {{LSL DefineRow||[[llSetColor]]|Sets the prim's color}} | ||
{{LSL DefineRow||[[llSetPrimitiveParams]]|Sets the prim's parameters}} | |||
{{LSL DefineRow||[[llSetLinkAlpha]]|Sets link's alpha}} | {{LSL DefineRow||[[llSetLinkAlpha]]|Sets link's alpha}} | ||
{{LSL DefineRow||[[llSetLinkColor]]|Sets link's color}} | {{LSL DefineRow||[[llSetLinkColor]]|Sets link's color}} | ||
{{LSL DefineRow||[[ | {{LSL DefineRow||[[llSetLinkPrimitiveParams]]|Sets link's parameters}} | ||
|constants= | |||
{{LSL DefineRow||[[PRIM_COLOR]]|}} | |||
|events= | |events= | ||
{{LSL DefineRow||[[changed]]|}} | {{LSL DefineRow||[[changed]]|}} | ||
|cat1 | |cat1=Color | ||
|cat2 | |cat2=Alpha | ||
|cat3 | |cat3 | ||
|cat4 | |cat4 | ||
}} | }} |
Latest revision as of 12:28, 1 December 2023
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Description
Constant: integer CHANGED_COLOR = 0x2;The integer constant CHANGED_COLOR has the value 0x2
Prim Blinn-Phong color or alpha parameters have changed
Caveats
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.");
}
}
}