Difference between revisions of "LlCloud"
(Legacy clouds are no longer supported as of https://wiki.secondlife.com/wiki/Release_Notes/Second_Life_Server/13#13.02.08.270166 - this function now only returns 0.0.) |
|||
Line 1: | Line 1: | ||
{{LSL_Function | {{LSL_Function | ||
|inject-1={{#vardefine:gd_text|Legacy clouds are no longer supported as of [[Release_Notes/Second_Life_Server/13#13.02.08.270166|13.02.08.270166]] - this function now only returns 0.0.}} | |||
|inject-2={{LSL Function/offset|offset|noZ=*}} | |inject-2={{LSL Function/offset|offset|noZ=*}} | ||
|func_id=43|func_sleep=0.0|func_energy=10.0 | |func_id=43|func_sleep=0.0|func_energy=10.0 | ||
Line 38: | Line 39: | ||
|cat3 | |cat3 | ||
|cat4 | |cat4 | ||
|history= | |||
*Deprecated in [[Release_Notes/Second_Life_Server/13#13.02.08.270166|13.02.08.270166]]. | |||
|deprecated=none | |deprecated=none | ||
}} | }} |
Revision as of 10:40, 11 March 2013
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Deprecated | |
(This function has been deprecated.)
Legacy clouds are no longer supported as of 13.02.08.270166 - this function now only returns 0.0. |
Summary
Function: float llCloud( vector offset );0.0 | Forced Delay |
10.0 | Energy |
Returns a float that is the cloud density at the prim position + offset
• vector | offset | – | offset relative to the prim's position and expressed in local coordinates |
Only the x and y coordinates in offset are important, the z component is ignored. Returned values are in the range [0.0, 2.0]. Values above 1.0 indicate rain.
Specification
SL features a cellular automata-based weather system. There are 16x16 square cloud "cells" per region.
Caveats
- This function has been deprecated.
- There are currently no SecondLife clients that render rain.
- The client attempts to render clouds from the cloud algorithm results sent from the server, which is why different clients can see different cloud formations and de-synchronizes cloud view from the server over time. The cloud density data is sent from the server to the client when the region is loaded by the client. This can happen when the region comes into view, during teleport or during login.
Examples
<lsl>default {
touch_start(integer num) { llSay(0,"Cloud density:" + (string)llCloud(ZERO_VECTOR)); }}</lsl>
Notes
Clouds and wind are interrelated.
Client
Clouds are always rendered between about 180-200m absolute height.
Algorithm
The cloud seed/growth/dissipation algorithm uses a solenoidal vector field, which is a vector field with zero-divergence: ∇ · v = 0
This condition is satisfied whenever v has a vector potential A, because if v = ∇ ⨯ A then ∇ · v = ∇ · (∇ ⨯ A) = 0
See Also
Functions
• | llWind | |||
• | llGetSunDirection |