aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenSim.Framework/Types
diff options
context:
space:
mode:
authormingchen2007-06-07 19:24:04 +0000
committermingchen2007-06-07 19:24:04 +0000
commit5caf2faa24120f48522608c74b34c5ba4ce74ed5 (patch)
tree2908543861dcdf4a3774450120e00cfb676ebf8b /Common/OpenSim.Framework/Types
parent*Forgot to initialize estateSettings variable in RegionInfoBase (diff)
downloadopensim-SC_OLD-5caf2faa24120f48522608c74b34c5ba4ce74ed5.zip
opensim-SC_OLD-5caf2faa24120f48522608c74b34c5ba4ce74ed5.tar.gz
opensim-SC_OLD-5caf2faa24120f48522608c74b34c5ba4ce74ed5.tar.bz2
opensim-SC_OLD-5caf2faa24120f48522608c74b34c5ba4ce74ed5.tar.xz
*Added basic support for EstateOwnerMessage
**Added support for 'getinfo' method
Diffstat (limited to 'Common/OpenSim.Framework/Types')
-rw-r--r--Common/OpenSim.Framework/Types/EstateSettings.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/Common/OpenSim.Framework/Types/EstateSettings.cs b/Common/OpenSim.Framework/Types/EstateSettings.cs
index 1bd18d0..b34a1ac 100644
--- a/Common/OpenSim.Framework/Types/EstateSettings.cs
+++ b/Common/OpenSim.Framework/Types/EstateSettings.cs
@@ -37,6 +37,26 @@ namespace OpenSim.Framework.Types
37 public class EstateSettings 37 public class EstateSettings
38 { 38 {
39 //Settings to this island 39 //Settings to this island
40 public float billableFactor = (float)0.0;
41 public uint estateID = 0;
42 public uint parentEstateID = 0;
43
44 public byte maxAgents = 40;
45 public float objectBonusFactor = (float)1.0;
46
47 public int redirectGridX = 0; //??
48 public int redirectGridY = 0; //??
49 public uint regionFlags = 0; //??
50
51 public byte simAccess = 0; //??
52 public float sunHour = 0;
53
54 public float terrainRaiseLimit = 0;
55 public float terrainLowerLimit = 0;
56
57 public bool useEstateSun = false;
58 public int pricePerMeter = 1;
59
40 public ushort regionWaterHeight = 20; 60 public ushort regionWaterHeight = 20;
41 public bool regionAllowTerraform = true; 61 public bool regionAllowTerraform = true;
42 62
@@ -70,5 +90,8 @@ namespace OpenSim.Framework.Types
70 // Terrain Default (Must be in F32 Format!) 90 // Terrain Default (Must be in F32 Format!)
71 public string terrainFile = "default.r32"; 91 public string terrainFile = "default.r32";
72 public double terrainMultiplier = 60.0; 92 public double terrainMultiplier = 60.0;
93 public float waterHeight = (float)20.0;
94
95
73 } 96 }
74} 97}