removed useless _ folders
This commit is contained in:
3
Display_Model_Script/Display_Model_Script.sol
Normal file
3
Display_Model_Script/Display_Model_Script.sol
Normal file
@@ -0,0 +1,3 @@
|
||||
<Solution name="Display_Model_Script">
|
||||
<Project name="Display_Model_Script" path="Display_Model_Script\Display_Model_Script.prj" active="true"/>
|
||||
</Solution>
|
||||
@@ -0,0 +1,6 @@
|
||||
<Project name="Display_Model_Script" guid="D70E7E1C-6C00-1014-B904-200204C60A89">
|
||||
<Object name="Object" guid="D70E7F24-6C00-1014-B904-200204C60A89">
|
||||
<Script name="Display_Model_Script_1.lsl" guid="D70EAC88-6C00-1014-B904-200204C60A89">
|
||||
</Script>
|
||||
</Object>
|
||||
</Project>
|
||||
@@ -0,0 +1,34 @@
|
||||
// :CATEGORY:Die
|
||||
// :NAME:Display_Model_Script
|
||||
// :AUTHOR:Anonymous
|
||||
// :CREATED:2010-01-10 05:20:56.000
|
||||
// :EDITED:2013-09-18 15:38:51
|
||||
// :ID:241
|
||||
// :NUM:331
|
||||
// :REV:1.0
|
||||
// :WORLD:Second Life
|
||||
// :DESCRIPTION:
|
||||
// Display Model Script.lsl
|
||||
// :CODE:
|
||||
|
||||
// Inter-object commands
|
||||
string commandDerez = "derez";
|
||||
|
||||
// This is the channel the main vendor talks to rezzed models on
|
||||
integer commChannel;
|
||||
|
||||
default {
|
||||
state_entry() {
|
||||
llTargetOmega(<0,0,1>,0.2,1.0);
|
||||
}
|
||||
|
||||
on_rez(integer startParam) {
|
||||
commChannel = startParam;
|
||||
llListen(commChannel, "", NULL_KEY, commandDerez);
|
||||
}
|
||||
|
||||
listen(integer channel, string name, key id, string message) {
|
||||
llDie();
|
||||
}
|
||||
}
|
||||
// END //
|
||||
Reference in New Issue
Block a user