Join us in Phaze Demesnes

LSL Script Library Home   Add a script Show All
Category: Contributor: Description
Particles Xah Lee Rotating Water Sprinkler
water sprinkler effect
The script

Download this script - Please use this link to get this script. If you see all the code on one long line, please use Wordpad or another editor, such as LSLEdit.exe. The .LSL file you will download is an ordinary text file.

1 // This script is from http://xahlee.org/sl/ .
2 // Copyright © 2007 Xah Lee.
3 // Permission is granted for use or modification provided this note is intact.
4
5 // a rotating water springler for lawns
6
7 partyOn(){
10
12
15
19 PSYS_SRC_ACCEL, <0.0,0.0,-1.>,
20
23 PSYS_SRC_OMEGA, <0.,0.,1.>,
24
26
27 PSYS_PART_START_COLOR, <1,1,1>,
28 PSYS_PART_END_COLOR, <1,1,1>,
29
32
33 PSYS_PART_START_SCALE, <.08,.8,0>,
34 PSYS_PART_END_SCALE, <.05,.1,0>,
35
37 , 0
42 ]);
43 }
44
45 default { state_entry() { partyOn(); }