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

View File

@@ -0,0 +1,6 @@
<Project name="Auto_Door_Left" guid="D6E1F2E3-6C00-1014-B904-200204C60A89">
<Object name="Object" guid="D6E1F3D1-6C00-1014-B904-200204C60A89">
<Script name="Auto_Door_Left_1.lsl" guid="D6E22F92-6C00-1014-B904-200204C60A89">
</Script>
</Object>
</Project>

View File

@@ -0,0 +1,60 @@
// :CATEGORY:Door
// :NAME:Auto_Door_Left
// :AUTHOR:Anonymous
// :CREATED:2010-01-10 05:20:56.000
// :EDITED:2013-09-18 15:38:48
// :ID:63
// :NUM:90
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// Auto Door Left.lsl
// :CODE:
default
{
state_entry()
{
llSay(0, "Door 1.0");
state open;
}
}
state open
{
touch_start(integer total_number)
{
llTriggerSound("Door", 0.5);
rotation rot = llGetRot();
rotation delta = llEuler2Rot(<0,0,(PI/4)+-0.1>);
rot = delta * rot;
llSetRot(rot);
llSleep(0.25);
rot = delta * rot;
llSetRot(rot);
state closed;
}
}
state closed
{
state_entry()
{
llSleep(20.0);
llTriggerSound("Door", 0.5);
rotation rot = llGetRot();
rotation delta = llEuler2Rot(<0,0,(-PI/4)+0.1>);
rot = delta * rot;
llSetRot(rot);
llSleep(0.25);
rot = delta * rot;
llSetRot(rot);
state open;
}
}
// END //