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,60 @@
// :CATEGORY:Pet
// :NAME:basic_follower__rotation
// :AUTHOR:Logan Bauer
// :CREATED:2010-01-10 05:20:56.000
// :EDITED:2013-09-18 15:38:48
// :ID:79
// :NUM:106
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// basic follower + rotation.lsl
// :CODE:
////////////////////////////////////////////////////////////////
// Open Basic Follower/Facing Script, by Logan Bauer. //
////////////////////////////////////////////////////////////////
// OFFSET is the position of your pet in relation to it's owner's position.
// For example, in the default setting below, "vector offset =<-1,0,1>;"
// I.E. (x,y,z), the -1 puts it 1m back behind owner, the 0 means don't have
// it stay left or right, and 1 means have it stay 1m above it's owner.
// So, if you wanted the script to make it follow directly in front of you,
// and to the left, then you would change it to "vector offset =<1,1,0>;"
vector offset =<-1,0,1>;
startup()
{
vector pos = llGetPos();
llSetStatus(STATUS_ROTATE_Z,TRUE);
llSetStatus(STATUS_PHYSICS, TRUE);
key id = llGetOwner();
llSensorRemove();
llSensorRepeat("",llGetOwner(),AGENT,200,2*PI,.5);
}
default
{
state_entry()
{
startup();
}
on_rez(integer start_param)
{
startup();
}
sensor(integer total_number)
{
vector pos = llDetectedPos(0);
llMoveToTarget(pos+offset*llDetectedRot(0),.3);
llLookAt(pos, .1 , 1);
}
}
// END //

View File

@@ -0,0 +1,6 @@
<Project name="basic_follower__rotation" guid="D6E641B2-6C00-1014-B904-200204C60A89">
<Object name="Object" guid="D6E64385-6C00-1014-B904-200204C60A89">
<Script name="basic_follower__rotation_1.lsl" guid="D6E668C3-6C00-1014-B904-200204C60A89">
</Script>
</Object>
</Project>