Difference between revisions of "GradientValue"
Jump to navigation
Jump to search
Kireji Haiku (talk | contribs) m (fixed check) |
Kireji Haiku (talk | contribs) m (damn typo) |
||
Line 28: | Line 28: | ||
vector GradientValue(vector start, vector end, float percentage) | vector GradientValue(vector start, vector end, float percentage) | ||
{ | { | ||
if (percentage < 0.0 || 100.0 < percentage) | if (percentage < 0.0 || 100.0 < percentage) return <-1, -1, -1>; | ||
percentage /= 100.0; | percentage /= 100.0; | ||
Revision as of 16:08, 8 January 2014
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Summary
Function: vector GradientValue( vector start, vector end, float percentage );Returns a vector that is the color vector between start and end depending upon percentage if percentage is in range, else returns <-1, -1, -1>
.
• vector | start | – | Gradient start color | |
• vector | end | – | Gradient end color | |
• float | percentage | – | Percentage in the range (0.0 to 100.0) from start to end |
Specification
<lsl> // Created by Ugleh Ulrik
vector GradientValue(vector start, vector end, float percentage) {
if (percentage < 0.0
Examples
<lsl> vector GradientValue(vector start, vector end, float percentage) {
if (percentage < 0.0See Also
Constants
• | PRIM_COLOR | |||
• | CHANGED_COLOR |
Functions
• | llGetColor | |||
• | llGetLinkPrimitiveParams | |||
• | llSetColor | |||
• | llSetLinkColor |
Articles
• | Color and Scripting | |||
• | Color |