Difference between revisions of "LlWind"

From Second Life Wiki
Jump to navigation Jump to search
m
(2 intermediate revisions by 2 users not shown)
Line 14: Line 14:
|caveats
|caveats
|examples=
|examples=
<lsl>
<source lang="lsl2">
default
default
{
{
Line 22: Line 22:
     }
     }
}
}
</lsl>
</source>
<source lang="lsl2">
// wind interpretation as angle and speed
default
{
    state_entry()
    {
        vector windVector = llWind( ZERO_VECTOR);
        float windSpeed = llVecMag( windVector);
        float windDirection = llAtan2( windVector.y, windVector.x);
        integer compassWind = ( 450 - (integer)( RAD_TO_DEG*windDirection))%360;
        llOwnerSay( "\nWind direction: "+(string)compassWind+"°\nWind speed: "+(string)windSpeed+" m/S");
    }
}
</source>
|helpers
|helpers
|also_functions={{LSL DefineRow||[[llCloud]]}}
|also_functions={{LSL DefineRow||[[llCloud]]}}
|also_articles={{LSL DefineRow||{{LSLGC|Weather}}|SL Weather information}}
|also_articles={{LSL DefineRow||{{LSLGC|Weather}}|SL Weather information}}
{{LSL DefineRow||[[User:Dora_Gustafson/moderated_world_wind|Moderated in-world wind]]}}
|notes
|notes
|issues={{Issue|SVC-3131|llWind() and viewer wind effects do not match}}
|issues={{Issue/V1|SVC-3131|llWind() and viewer wind effects do not match}}
|cat1=Region
|cat1=Region
|cat2=Weather
|cat2=Weather

Revision as of 12:26, 19 September 2016

Summary

Function: vector llWind( vector offset );

Returns a vector that is the wind velocity at the prim's position + offset

• vector offset offset relative to the prim's position and expressed in local coordinates

The requested position needs to be in the same region. Only the x and y coordinates in offset are important, the z component is ignored.

Examples

default
{
    touch_start(integer num)
    {
        llSay(0, "Wind velocity: " + (string)llWind(ZERO_VECTOR));
    }
}
// wind interpretation as angle and speed
default
{
    state_entry()
    {
        vector windVector = llWind( ZERO_VECTOR);
        float windSpeed = llVecMag( windVector);
        float windDirection = llAtan2( windVector.y, windVector.x);
        integer compassWind = ( 450 - (integer)( RAD_TO_DEG*windDirection))%360;
        llOwnerSay( "\nWind direction: "+(string)compassWind+\nWind speed: "+(string)windSpeed+" m/S");
    }
}

See Also

Functions

•  llCloud

Articles

•  Weather SL Weather information
•  Moderated in-world wind

Deep Notes

All Issues

~ Search JIRA for related Issues
   llWind() and viewer wind effects do not match

Signature

function vector llWind( vector offset );