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

View File

@@ -0,0 +1,75 @@
// :CATEGORY:Sound
// :NAME:Play_Sound
// :AUTHOR:Scot Titian
// :CREATED:2010-10-21 21:39:06.097
// :EDITED:2013-09-18 15:38:59
// :ID:634
// :NUM:862
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// Simple sound script.
// :CODE:
/*//--Written by Scot Titian--//*/
/*// This script is free to //*/
/*// use and distribute as //*/
/*// long as you leave this //*/
/*// headear here at the top //*/
/*// of the script. //*/
/*//--------------------------//*/
//--NOTE: To use the name of the Sound you must put the sound in the same object this script is in
integer gPlaying; //--If we are playing sound
key gAnimKey = ""; //--The ID of the sound to play
string gAnimName = ""; //--The name of the animation if you don't have the ID
integer gUseKey = TRUE; //--Set to false if you don't have the ID of the animation
integer gDelay = 20; //--How long to wait before we can play the sound again (In seconds)
integer gCanPlay; //--If the animation can play (for the delay)
integer gAllowAll = TRUE; //--If everyone can click us (Set to false for owner only)
default
{
state_entry()
{
gPlaying = FALSE; //--We start out not playing sound
gCanPlay = TRUE; //--We start able to play
}
touch_start(integer total_number)
{
if(TRUE == gAllowAll)
{
if(TRUE == gCanPlay)
{

View File

@@ -0,0 +1,6 @@
<Project name="Play_Sound" guid="D86E8321-6C00-1014-B904-200204C60A89">
<Object name="Object" guid="D86E8401-6C00-1014-B904-200204C60A89">
<Script name="Play_Sound_1.lsl" guid="D86EA1AE-6C00-1014-B904-200204C60A89">
</Script>
</Object>
</Project>