Difference between revisions of "LlGetAlpha"

From Second Life Wiki
Jump to navigation Jump to search
m
m
Line 13: Line 13:
|constants
|constants
|examples=
|examples=
<lsl>//Tells the owner the alpha on all sides
<source lang="lsl2">//Tells the owner the alpha on all sides
default
default
{
{
Line 26: Line 26:
         }
         }
     }
     }
}</lsl>
}</source>
|helpers=
|helpers=
<lsl>float AveragePrimAlpha()
<source lang="lsl2">float AveragePrimAlpha()
{//Since this is so simple you may just want to inline it instead of including the function.
{//Since this is so simple you may just want to inline it instead of including the function.
     return (llGetAlpha(ALL_SIDES) / llGetNumberOfSides());
     return (llGetAlpha(ALL_SIDES) / llGetNumberOfSides());
}</lsl>
}</source>
|also_functions=
|also_functions=
{{LSL DefineRow||[[llSetAlpha]]|Sets the prim's alpha}}
{{LSL DefineRow||[[llSetAlpha]]|Sets the prim's alpha}}

Revision as of 01:36, 22 January 2015

Summary

Function: float llGetAlpha( integer face );
0.0 Forced Delay
10.0 Energy

Returns a float that is the alpha of face.

• integer face face number or ALL_SIDES

If face is ALL_SIDES then the function returns the sum of alpha of all the faces on the prim, range [0, sides][1]. Otherwise the return is in the range [0, 1].

Caveats

  • If face indicates a face that does not exist the return is 1.0

Examples

//Tells the owner the alpha on all sides
default
{
    state_entry()
    {
        integer i = 0;
        integer max = llGetNumberOfSides();
        while(i < max)
        {
            llSay(0,"Face "+(string)i+" alpha is " + (string)llGetAlpha(i));
            ++i;
        }
    }
}

Useful Snippets

float AveragePrimAlpha()
{//Since this is so simple you may just want to inline it instead of including the function.
    return (llGetAlpha(ALL_SIDES) / llGetNumberOfSides());
}

See Also

Functions

•  llSetAlpha Sets the prim's alpha
•  llGetColor Gets the prim's color
•  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

•  Translucent Color

Deep Notes

Rounding

Alpha is stored in a single 8-bit byte, meaning there are 256 values that are possible. Consequently the values returned by this function are all multiples of 1/255. When the alpha value is initially stored the float value is rounded to the nearest multiple, turning 0.5 into 128/255 for example.

Footnotes

  1. ^ The ranges in this article are written in Interval Notation.

Signature

function float llGetAlpha( integer face );