aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorSignpostMarv2012-09-06 10:54:45 +0100
committerJustin Clark-Casey (justincc)2012-09-08 00:14:39 +0100
commit874bde366aa3f834957f757aa56a7634becb4415 (patch)
tree159683757c1bbddaf646981fb4191336f28037fa /OpenSim/Framework
parentrenaming to markdown file (diff)
downloadopensim-SC_OLD-874bde366aa3f834957f757aa56a7634becb4415.zip
opensim-SC_OLD-874bde366aa3f834957f757aa56a7634becb4415.tar.gz
opensim-SC_OLD-874bde366aa3f834957f757aa56a7634becb4415.tar.bz2
opensim-SC_OLD-874bde366aa3f834957f757aa56a7634becb4415.tar.xz
4096 is used in various places as the maximum height of a region, refactoring to be a constant
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Constants.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Framework/Constants.cs b/OpenSim/Framework/Constants.cs
index 1b1aaf2..a2eb5ee 100644
--- a/OpenSim/Framework/Constants.cs
+++ b/OpenSim/Framework/Constants.cs
@@ -31,6 +31,7 @@ namespace OpenSim.Framework
31 public class Constants 31 public class Constants
32 { 32 {
33 public const uint RegionSize = 256; 33 public const uint RegionSize = 256;
34 public const uint RegionHeight = 4096;
34 public const byte TerrainPatchSize = 16; 35 public const byte TerrainPatchSize = 16;
35 public const string DefaultTexture = "89556747-24cb-43ed-920b-47caed15465f"; 36 public const string DefaultTexture = "89556747-24cb-43ed-920b-47caed15465f";
36 37