Difference between revisions of "LlGetGlow"

From Second Life Wiki
Jump to navigation Jump to search
(LlGetGlow moved to GetGlow: not an inbuild function -> no ll prefix)
 
m (fixed ^_^)
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
#REDIRECT [[GetGlow]]
{{LSL_Function
|inject-2={{LSL_Function/face|face|return=0.0|get=returns the sum of glow of all the faces on the prim.}}
|func_id=50|func_sleep=0.0|func_energy=10.0
|mode=request
|func=llGetGlow|return_type=float|p1_type=integer|p1_name=face
|func_footnote=The return is in the [http://id.mind.net/~zona/mmts/miscellaneousMath/intervalNotation/intervalNotation.html range] [0, 1]
|func_desc
|return_text=that is the glow of '''face'''.
|spec
|caveats
|constants
|examples=
<lsl>//Tells the owner the glow on all sides
default
{
    state_entry()
    {
        integer i = 0;
        integer max = llGetNumberOfSides();
        while(i < max)
        {
            llSay(0,"Face "+(string)i+" glow is " + (string)llGetGlow(i));
            ++i;
        }
    }
}</lsl>
|helpers=
<lsl>float AveragePrimGlow()
{//Since this is so simple you may just want to inline it instead of including the function.
    return (llGetGlow(ALL_SIDES) / llGetNumberOfSides());
}</lsl>
|also_functions=
{{LSL DefineRow||[[llSetAlpha]]|Sets the prim's alpha}}
{{LSL DefineRow||[[llGetAlpha]]|Gets the prim's alpha}}
{{LSL DefineRow||[[llGetColor]]|Gets the prim's color}}
{{LSL DefineRow||[[llSetColor]]|Sets the prim's color}}
{{LSL DefineRow||[[llSetLinkColor]]|Sets link's color}}
{{LSL DefineRow||[[llSetLinkAlpha]]|Sets link's alpha}}
{{LSL DefineRow||[[llGetNumberOfSides]]|Gets the number of faces on the prim}}
|also_events
|also_tests
|also_articles
|notes=Use the user-defined function [[GetGlow|GetGlow(integer face)]] until this function is implemented.
|permission
|negative_index
|cat1
|cat2
|cat3
|cat4
}}

Latest revision as of 18:26, 14 October 2010

Emblem-important-yellow.png LSL Feature Request
The described function does not exist. This article is a feature request.

Summary

Function: float llGetGlow( integer face );
REQUEST Function ID
0.0 Forced Delay
10.0 Energy

Returns a float that is the glow of face.

• integer face face number or ALL_SIDES

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

Caveats

  • If face indicates a face that does not exist the return is 0.0
All Issues ~ Search JIRA for related Bugs

Examples

<lsl>//Tells the owner the glow on all sides default {

   state_entry()
   {
       integer i = 0;
       integer max = llGetNumberOfSides();
       while(i < max)
       {
           llSay(0,"Face "+(string)i+" glow is " + (string)llGetGlow(i));
           ++i;
       }
   }
}</lsl>

Useful Snippets

<lsl>float AveragePrimGlow() {//Since this is so simple you may just want to inline it instead of including the function.

   return (llGetGlow(ALL_SIDES) / llGetNumberOfSides());

}</lsl>

Notes

Use the user-defined function GetGlow(integer face) until this function is implemented.

See Also

Functions

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

Deep Notes

Search JIRA for related Issues

Signature

//function float llGetGlow( integer face );