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,107 @@
// :CATEGORY:Prim Calculator
// :NAME:Prim_counterscanner
// :AUTHOR:Rolig Loon
// :CREATED:2012-08-10 15:09:17.267
// :EDITED:2013-09-18 15:39:00
// :ID:652
// :NUM:888
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// Copyright © 2009 Linden Research, Inc. Licensed under Creative Commons Attribution-Share Alike 3.0, from the Wiki at http://community.secondlife.com/t5/LSL-Library/Sim-Prim-Count/td-p/1603611
// :CODE:
//Sim Prim Scanner -- Rolig Loon -- July 2012
// I find that a 0.5m white sphere makes a nice container for this scanner script,
// but anything will do. It's just that the particle glow looks nice on that
// sphere. Your choice.
list gPrclID; // List of unique parcel UUIDs
integer gTotPrims; // Total prims detected
float gX; // X coordinate of curren scan target
float gY; // Y coordinate of current scan target
string gObjName; // This scanner's name
integer gNUM; // Sequence number of unique parcels scans
default
{
state_entry()
{
llSetColor(<1.0,1.0,1.0>,ALL_SIDES);
gPrclID = [];
gTotPrims = 0;
// Start scan in the SW corner of the sim
gX = 4.0;
gY = 4.0;
}
on_rez(integer start)
{
llSetPos(llGetPos() + <0.0,0.0,0.5>);
llSetText("Touch to start scan",<1.0,1.0,0.0>,1.0);
}
touch_start(integer total_number)
{
llSetText("Scanning ....",<1.0,1.0,0.0>,1.0);
// Cheesy visiual effects ........
llSetColor(<1.0,1.0,0.0>,ALL_SIDES);
llParticleSystem([
PSYS_SRC_TEXTURE, llGetInventoryName(INVENTORY_TEXTURE, 0),
PSYS_PART_START_SCALE, <0.02, 0.02, FALSE>, PSYS_PART_END_SCALE, <3.0, 3.0, FALSE>,
PSYS_PART_START_COLOR, <1.00,1.00,0.00>, PSYS_PART_END_COLOR, <1.00,1.00,0.00>,
PSYS_PART_START_ALPHA, (float) .5, PSYS_PART_END_ALPHA, (float) 0.0,
PSYS_SRC_BURST_PART_COUNT, (integer) 1,
PSYS_SRC_BURST_RATE, (float) 0.05,
PSYS_PART_MAX_AGE, (float) 0.75,
PSYS_SRC_PATTERN, (integer) 1,
PSYS_PART_FLAGS, (integer) ( 0
| PSYS_PART_INTERP_COLOR_MASK
| PSYS_PART_INTERP_SCALE_MASK

View File

@@ -0,0 +1,6 @@
<Project name="Prim_counterscanner" guid="D8D028D5-6C00-1014-B904-200204C60A89">
<Object name="Object" guid="D8D029C0-6C00-1014-B904-200204C60A89">
<Script name="Prim_counterscanner_1.lsl" guid="D8D04D58-6C00-1014-B904-200204C60A89">
</Script>
</Object>
</Project>