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,3 @@
<Solution name="Random_Movement__Flight">
<Project name="Random_Movement__Flight" path="Random_Movement__Flight\Random_Movement__Flight.prj" active="true"/>
</Solution>

View File

@@ -0,0 +1,90 @@
// :CATEGORY:Movement
// :NAME:Random_Movement__Flight
// :AUTHOR:Davy Maltz
// :CREATED:2010-01-10 05:20:56.000
// :EDITED:2013-09-18 15:39:00
// :ID:678
// :NUM:921
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// Random_Movement__Flight
// :CODE:
float distanceallowance = 5; //How many meters to let the butterfly wander away from the owner.
FetchTarget()
{
num = llRound(llFrand(1));
if(num == 0) { num = 2;}
posneg = (integer)llList2String(mult,num);
targetdist = <llFrand(distanceallowance)*posneg,0,0>;
num = llRound(llFrand(1));
if(num == 0) { num = 2;}
posneg = (integer)llList2String(mult,num);
targetdist = <targetdist.x,llFrand(distanceallowance)*posneg,0>;
targetdist = <targetdist.x,targetdist.y,llFrand(distanceallowance)>;
oursize = llGetAgentSize(llGetOwner());
halfourheight = oursize.z / 2;
targetpos = <ownerpos.x,ownerpos.y,ownerpos.z - halfourheight> + targetdist;
if(targetpos.z < llGround(v))
{
targetpos.z = targetpos.z*-1;
}
target = llTarget(targetpos,1.0);
llMoveToTarget(targetpos,2.0);
}
vector v;
vector oursize;
float halfourheight;
integer onlyabove;
list mult = [1,-1];
integer num;
integer posneg;
vector targetdist;
integer target;
vector ownerpos;
vector targetpos;
default
{
on_rez(integer start_param)
{

View File

@@ -0,0 +1,6 @@
<Project name="Random_Movement__Flight" guid="D8110B1F-6C00-1014-B904-200204C60A89">
<Object name="Object" guid="D8110C17-6C00-1014-B904-200204C60A89">
<Script name="Random_Movement__Flight_1.lsl" guid="D8112B30-6C00-1014-B904-200204C60A89">
</Script>
</Object>
</Project>