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,27 @@
// :CATEGORY:Prim Animator
// :NAME:Archipelis scripts for prim animator
// :AUTHOR:Ferd Frederix
// :CREATED:2013-09-06
// :EDITED:2013-09-18 15:38:48
// :ID:52
// :NUM:74
// :REV:1
// :WORLD:Second Life
// :DESCRIPTION:
// When touched will trigger an animation named "jump"
// :CODE:
default
{
state_entry()
{
}
touch_start(integer count)
{
llMessageLinked(LINK_SET, 1,"jump","");
}
}