removed useless _ folders
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
<Project name="Basic_sliding_doorscript" guid="D6E6D9CB-6C00-1014-B904-200204C60A89">
|
||||
<Object name="Object" guid="D6E6DAE2-6C00-1014-B904-200204C60A89">
|
||||
<Script name="Basic_sliding_doorscript_1.lsl" guid="D6E6F80E-6C00-1014-B904-200204C60A89">
|
||||
</Script>
|
||||
</Object>
|
||||
</Project>
|
||||
@@ -0,0 +1,37 @@
|
||||
// :CATEGORY:Door
|
||||
// :NAME:Basic_sliding_doorscript
|
||||
// :AUTHOR:Kyrah Abbattoir
|
||||
// :CREATED:2010-01-10 05:20:56.000
|
||||
// :EDITED:2013-09-18 15:38:48
|
||||
// :ID:82
|
||||
// :NUM:109
|
||||
// :REV:1.0
|
||||
// :WORLD:Second Life
|
||||
// :DESCRIPTION:
|
||||
// Basic sliding doorscript.lsl
|
||||
// :CODE:
|
||||
|
||||
/////////////////////////////////
|
||||
//ultra basic sliding door script
|
||||
//by Kyrah Abattoir
|
||||
/////////////////////////////////
|
||||
|
||||
vector closed = <121.007,31.148,23.088>;//XYZ coordinates of the door when closed
|
||||
vector open = <119.941,31.148,23.088>;//XYZ coordinates of the door when closed
|
||||
float time = 5.0;//time before the door close itself
|
||||
default
|
||||
{
|
||||
state_entry()
|
||||
{
|
||||
llSetPos(closed);
|
||||
llSetText("",<1,1,1>,1.0);//REMOVE THIS LINE
|
||||
}
|
||||
|
||||
touch_start(integer total_number)
|
||||
{
|
||||
llSetPos(open);
|
||||
llSleep(time);
|
||||
llSetPos(closed);
|
||||
}
|
||||
}
|
||||
// END //
|
||||
Reference in New Issue
Block a user