removed useless _ folders
This commit is contained in:
40
flamingo/Bird Flight/Head/Script.lsl
Normal file
40
flamingo/Bird Flight/Head/Script.lsl
Normal file
@@ -0,0 +1,40 @@
|
||||
// :CATEGORY:Bird
|
||||
// :NAME:flamingo
|
||||
// :AUTHOR:Ferd Frederix
|
||||
// :CREATED:2013-09-06
|
||||
// :EDITED:2013-09-18 15:38:53
|
||||
// :ID:314
|
||||
// :NUM:417
|
||||
// :REV:1
|
||||
// :WORLD:Second Life
|
||||
// :DESCRIPTION:
|
||||
// For one of 2 heads
|
||||
// :CODE:
|
||||
|
||||
default
|
||||
{
|
||||
|
||||
state_entry()
|
||||
{
|
||||
llSetAlpha(0,ALL_SIDES);
|
||||
}
|
||||
|
||||
link_message(integer s, integer num, string str, key id)
|
||||
{
|
||||
if (str == "fly")
|
||||
{
|
||||
llSetAlpha(1,ALL_SIDES);
|
||||
}
|
||||
else if (str == "land")
|
||||
{
|
||||
llSetAlpha(0,ALL_SIDES);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
on_rez(integer p)
|
||||
{
|
||||
llSetAlpha(0,ALL_SIDES);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user