aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/Terrain/TerrainChannel.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Various terrain engine fixesAdam Frisby2008-04-061-7/+6
| | | | | | * Includes patch #894 fixes for terrain load-tile * Large number of other terrain fixes and new commands included.
* Set default terrain to complete flat terrain (at 26 height). Even flat ↵MW2008-04-021-6/+7
| | | | terrain as default seems better than the messed up terrain I was getting.
* Re-enabled terrain texture generation for the world map. Adam can clean up/ ↵MW2008-03-291-0/+8
| | | | | | | | sort it out when he gets time. Most likely doesn't really work in grid mode as the generated textures are marked as temporary and I don't think they are updated to the asset server. We have to either live with these textures being sent to the asset server, and manually clean them out from time to time or wait until there is some asset management system in place. Also currently the texture is only generated at region startup, it is not updated after terraforming.
* Added copyright messages. Set svn:eol-style. Minor cleanup.Jeff Ames2008-03-181-2/+27
|
* * Fix for Justincc's bug report #768 - Terrain looks rather phallic.Adam Frisby2008-03-141-3/+6
|
* Update svn properties.Jeff Ames2008-03-141-119/+119
|
* * Fixed 'flatten area' brush, so it now has a 'force' instead of instantly ↵Adam Frisby2008-03-141-0/+119
flattening the selected area. * Noise, and Noise-Area brushes now use Perlin noise, more closely simulating the method LL uses officially. * TerrainModule has been cleaned up slightly. * TerrainUtil class has several new functions related to seeded noise generation. * Extracted ITerrainEffect, ITerrainFloodEffect, ITerrainLoader, ITerrainPaintableEffect, TerrainChannel to seperate files.