removed useless _ folders

This commit is contained in:
Fred Beckhusen
2015-08-09 16:54:31 -05:00
parent fde850293c
commit 948a44dfba
5204 changed files with 2425579 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
<Solution name="L61basicwateranimation">
<Project name="L61basicwateranimation" path="L61basicwateranimation\L61basicwateranimation.prj" active="true"/>
</Solution>

View File

@@ -0,0 +1,6 @@
<Project name="L61basicwateranimation" guid="D73A1420-6C00-1014-B904-200204C60A89">
<Object name="Object" guid="D73A150F-6C00-1014-B904-200204C60A89">
<Script name="L61basicwateranimation_1.lsl" guid="D73A2E56-6C00-1014-B904-200204C60A89">
</Script>
</Object>
</Project>

View File

@@ -0,0 +1,37 @@
// :CATEGORY:Water Animation
// :NAME:L61basicwateranimation
// :AUTHOR:Dana Moore
// :CREATED:2010-01-10 05:20:56.000
// :EDITED:2013-09-18 15:38:55
// :ID:428
// :NUM:584
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// L6.01-basic-water-animation.lsl
// :CODE:
// Copyright (c) 2008, Scripting Your World
// All rights reserved.
//
// Scripting Your World
// By Dana Moore, Michael Thome, and Dr. Karen Zita Haigh
// http://syw.fabulo.us
// http://www.amazon.com/Scripting-Your-World-Official-Second/dp/0470339837/
//
// You are permitted to use, share, and adapt this code under the
// terms of the Creative Commons Public License described in full
// at http://creativecommons.org/licenses/by/3.0/legalcode.
// That means you must keep the credits, do nothing to damage our
// reputation, and do not suggest that we endorse you or your work.
//Listing 6.1: Water Animation
// texture your object with one of the water textures found in the library
default
{
state_entry() {
llSetTextureAnim(ANIM_ON | SMOOTH | LOOP, ALL_SIDES, 1, 1, 1.0, 1, 0.05);
}
}
// END //