diff options
| author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2017-07-26 18:56:18 +0100 | 
|---|---|---|
| committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2017-07-26 18:56:18 +0100 | 
| commit | 22c8efc2ce8cac2056b73c504b95a9413fff8818 (patch) | |
| tree | 352bc5e4b7881dda8967c3cba2c7432d135147e7 /scripts/testing | |
| parent | 30880e062afa0671b166f161ae7c109bfd37d38f (diff) | |
SL-731, SL-751 - added debug option DebugAnimatedObjects, updated LSL test script
Diffstat (limited to 'scripts/testing')
| -rw-r--r-- | scripts/testing/lsl/move_in_circle_using_llSetRegionPos.lsl | 9 | 
1 files changed, 1 insertions, 8 deletions
diff --git a/scripts/testing/lsl/move_in_circle_using_llSetRegionPos.lsl b/scripts/testing/lsl/move_in_circle_using_llSetRegionPos.lsl index fa12ab0588..cc5b899b67 100644 --- a/scripts/testing/lsl/move_in_circle_using_llSetRegionPos.lsl +++ b/scripts/testing/lsl/move_in_circle_using_llSetRegionPos.lsl @@ -21,14 +21,7 @@ stop_circle()  {      llSetTimerEvent(0);      llTargetOmega(<0.0, 0.0, 1.0>, TWO_PI/circle_time, 0.0); -    integer i; -    for (i=0; i<10; i++) -    { -        vector new_pos = circle_center; -        new_pos.x += llFrand(0.01); -        llSetRegionPos(new_pos); -        llSleep(0.1); -    } +    llSetRegionPos(circle_center);  }  next_circle()  | 
