aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/SunModule.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-04-23From: Kurt Taylor <krtaylor@us.ibm.com>Justin Clarke Casey1-0/+3
Attached is a patch for adding the llGetSunDirection functionality. It was implemented by adding a parameter to estate settings for storing the sun position. The sun position is calculated and stored via the sun module everytime the client's sun position is updated. It was tested with several different srcipts on Linux and Windows
2008-03-18Formatting cleanup.Jeff Ames1-26/+25
2008-03-03* Removed and sorted using clauses in a number of files.Adam Frisby1-1/+0
* Cleaned up ITerrainChannel * Implemented Raise, Lower, Smooth, Flatten, Noise Terrain Paint Brushes * Implemented Raise, Lower, Smooth, Flatten, Noise Terrain Fill Brushes * Implemented Export functionality for RAW32 terrain loader * Implemented Import/Export for SLRAW terrain loader * Implemented Export for JPEG terrain loader
2008-02-20Minor cleanup.Jeff Ames1-3/+3
2008-02-05Converted logging to use log4net.Jeff Ames1-4/+4
Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
2007-12-27* Optimized usingslbsa711-17/+20
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-11refactor SunModule a bit to make more sensibleSean Dague1-7/+12
2007-12-10default day's to a more sensible 24 hrs instead of 0.5. YouSean Dague1-1/+1
can still change this in the config file if you want something different.
2007-12-07added one more command to the console help.Jeff Ames1-2/+1
2007-11-18cleaned up some mono compiler warningsJeff Ames1-1/+1
2007-11-09don't break if they haven't defined the Sun section of their configSean Dague1-2/+10
2007-11-09make Sun progression configurable for the Sim from OpenSim.iniSean Dague1-2/+3
2007-11-07get rid of the debug line, that's just going to drive everyone nutsSean Dague1-1/+1
2007-11-07move Sun into a Region Module, pass 1. Currently this works fine withSean Dague1-0/+178
a fixed 30 minute day and the sun going East -> West again. It gets rid of super noon as well. It's a bit debug heavy right now, which I'll clean up tomorrow. I also plan to make time progression configurable in OpenSim.ini, but that will be tomorrow.