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="L97campfire">
<Project name="L97campfire" path="L97campfire\L97campfire.prj" active="true"/>
</Solution>

View File

@@ -0,0 +1,6 @@
<Project name="L97campfire" guid="D74C2CA9-6C00-1014-B904-200204C60A89">
<Object name="Object" guid="D74C2D7F-6C00-1014-B904-200204C60A89">
<Script name="L97campfire_1.lsl" guid="D74C47F3-6C00-1014-B904-200204C60A89">
</Script>
</Object>
</Project>

View File

@@ -0,0 +1,46 @@
// :CATEGORY:Fire
// :NAME:L97campfire
// :AUTHOR:Dana Moore
// :CREATED:2010-01-10 05:20:56.000
// :EDITED:2013-09-18 15:38:56
// :ID:448
// :NUM:604
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// L9.07-campfire.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 9.7 Animating a Campfire
key fireTexture = "150a5721-e27a-36f4-bf91-4d8d5ad781f7";
default {
state_entry() {
llSetAlpha(0,ALL_SIDES);
llSetAlpha(1,1);
llSetAlpha(1,3);
llSetTexture(fireTexture, ALL_SIDES);
llSetTextureAnim(ANIM_ON | LOOP, // mode
ALL_SIDES, // side
4, 4, // x_frames, y_frames
0, 0, // start, length frame
4); // frame rate
}
on_rez( integer _n ) {
llResetScript();
}
}
// END //