Join us in Phaze Demesnes

LSL Script Library Home   Add a script Show All
Category: Contributor: Description
Animation Doug Linden anim SMOOTH.lsl
Animation for Hair
anim SMOOTH.lsl

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 // CATEGORY:Animation
2 // DESCRIPTION:Animation for Hair
3 // ARCHIVED BY:Ferd Frederix
4
5 // anim SMOOTH Script
6 // By Doug Linden (I think)
7 //
8 // Drop on an object to make it change colors.
9 //
10 // If you are interested in scripting, check out
11 // the Script Help under the help menu.
12
13 // The double slash means these lines are comments
14 // and ignored by the computer.
15
16 // All scripts have a default state, this will be
17 // the first code executed.
18 default
19 {
20 // state_entry() is an event handler, it executes
21 // whenever a state is entered.
23 {
24 // llSetTextureAnim() is a function that animates a texture on a face.
25 llSetTextureAnim(ANIM_ON | SMOOTH | LOOP, ALL_SIDES,1,1,1.0, 1,0.25);
26 // animate the script to scroll across all the faces.
27 }
28
29
30 }
31 // END //