Difference between revisions of "PRIM COLOR"
Jump to navigation
Jump to search
m |
m |
||
Line 26: | Line 26: | ||
|text=When used with [[llSetPrimitiveParams]] & [[llSetLinkPrimitiveParams]] | |text=When used with [[llSetPrimitiveParams]] & [[llSetLinkPrimitiveParams]] | ||
|i1_type=integer|i1_name=face | |i1_type=integer|i1_name=face | ||
|i2_type= | |i2_type=vector|i2_name=color | ||
|i3_type=float|i3_name=alpha | |i3_type=float|i3_name=alpha | ||
|toc=llSetPrimitiveParams | |toc=llSetPrimitiveParams | ||
Line 36: | Line 36: | ||
|toc=llGetPrimitiveParams | |toc=llGetPrimitiveParams | ||
|i1_type=integer|i1_name=face | |i1_type=integer|i1_name=face | ||
|r1_type= | |r1_type=vector|r1_name=color | ||
|r2_type=float|r2_name=alpha | |r2_type=float|r2_name=alpha | ||
}} | }} |
Revision as of 00:31, 12 May 2010
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Description
Constant: integer PRIM_COLOR = 18;The integer constant PRIM_COLOR has the value 18
Used to get or set the color and alpha of a prim's face.
llSetPrimitiveParams
[ PRIM_COLOR, integer face, vector color, float alpha ]• integer | face | – | face number or ALL_SIDES | |
• vector | color | – | color in RGB <R, G, B> (<0.0, 0.0, 0.0> = black, <1.0, 1.0, 1.0> = white) | |
• float | alpha | – | from 0.0 (clear) to 1.0 (solid) (0.0 <= alpha <= 1.0) |
When used with llSetPrimitiveParams & llSetLinkPrimitiveParams
llGetPrimitiveParams
llGetPrimitiveParams([ PRIM_COLOR, integer face ]);Returns the list [ vector color, float alpha ]
• integer | face | – | face number or ALL_SIDES | ||
• vector | color | – | color in RGB <R, G, B> (<0.0, 0.0, 0.0> = black, <1.0, 1.0, 1.0> = white) | ||
• float | alpha | – | from 0.0 (clear) to 1.0 (solid) (0.0 <= alpha <= 1.0) |
Caveats:
- If face is ALL_SIDES then the PRIM_COLOR works on all sides.
- If face indicates a face that does not exist the PRIM_COLOR return is [ ZERO_VECTOR, 0.0 ]
Caveats
Related Articles
Functions
• | llSetPrimitiveParams | |||
• | llSetLinkPrimitiveParams | |||
• | llGetPrimitiveParams |
Events
• | changed |
Articles
• | Color in LSL | |||
• | Translucent Color |