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

View File

@@ -0,0 +1,44 @@
// :CATEGORY:Clock
// :NAME:Rotation_Clock
// :AUTHOR:Fred Kinsei
// :CREATED:2010-01-10 05:20:56.000
// :EDITED:2013-09-18 15:39:01
// :ID:712
// :NUM:976
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// made this to be a floor clock, so the script is set up to rotate on the z axis, change this for an upright clock.
//
// Place these scripts in a root prim, which is at the center of the clock face.
//
//
// Hour Hand:
// :CODE:
//Credit to the creator:
//Made by SL resident Fred Kinsei
integer hours;
integer min;
integer sec;
GetTimeNow()
{
integer timeNow;
timeNow = llRound(llGetWallclock());
hours = timeNow / 3600;
min = (timeNow % 3600) / 60;
sec = timeNow % 60;
if(hours > 12)
{

View File

@@ -0,0 +1,40 @@
// :CATEGORY:Clock
// :NAME:Rotation_Clock
// :AUTHOR:Fred Kinsei
// :CREATED:2010-01-10 05:20:56.000
// :EDITED:2013-09-18 15:39:01
// :ID:712
// :NUM:977
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// Minute Hand:
// :CODE:
//Credit to the creator:
//Made by SL resident Fred Kinsei
integer hours;
integer min;
integer sec;
GetTimeNow()
{
integer timeNow;
timeNow = llRound(llGetWallclock());
hours = timeNow / 3600;
min = (timeNow % 3600) / 60;
sec = timeNow % 60;
}

View File

@@ -0,0 +1,8 @@
<Project name="Rotation_Clock" guid="D8082137-6C00-1014-B904-200204C60A89">
<Object name="Object" guid="D8082240-6C00-1014-B904-200204C60A89">
<Script name="Rotation_Clock_1.lsl" guid="D8084728-6C00-1014-B904-200204C60A89">
</Script>
<Script name="Rotation_Clock_2.lsl" guid="D8087151-6C00-1014-B904-200204C60A89">
</Script>
</Object>
</Project>