diff options
author | BlueWall | 2012-09-18 10:09:32 -0400 |
---|---|---|
committer | BlueWall | 2012-09-18 10:12:32 -0400 |
commit | 9d973ec3b377f51eab4cbd8ef7528d91477fc1d7 (patch) | |
tree | 2f9ec14b07720df8be1daa72ae3b48b1a1b7180a | |
parent | Fix some inconsistencies in configurartion: NonPhys prims (diff) | |
download | opensim-SC_OLD-9d973ec3b377f51eab4cbd8ef7528d91477fc1d7.zip opensim-SC_OLD-9d973ec3b377f51eab4cbd8ef7528d91477fc1d7.tar.gz opensim-SC_OLD-9d973ec3b377f51eab4cbd8ef7528d91477fc1d7.tar.bz2 opensim-SC_OLD-9d973ec3b377f51eab4cbd8ef7528d91477fc1d7.tar.xz |
Cleanup from prev. commit
Make correct defaults to Phys/nonPhys prims to fix errors in prev. commit
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 4 | ||||
-rw-r--r-- | bin/OpenSim.ini.example | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index a27e126..c873cdf 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -106,7 +106,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
106 | /// <summary> | 106 | /// <summary> |
107 | /// Minimum value of the size of a non-physical prim in each axis | 107 | /// Minimum value of the size of a non-physical prim in each axis |
108 | /// </summary> | 108 | /// </summary> |
109 | public float m_minNonphys = 0.01f; | 109 | public float m_minNonphys = 0.001f; |
110 | 110 | ||
111 | /// <summary> | 111 | /// <summary> |
112 | /// Maximum value of the size of a non-physical prim in each axis | 112 | /// Maximum value of the size of a non-physical prim in each axis |
@@ -116,7 +116,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
116 | /// <summary> | 116 | /// <summary> |
117 | /// Minimum value of the size of a physical prim in each axis | 117 | /// Minimum value of the size of a physical prim in each axis |
118 | /// </summary> | 118 | /// </summary> |
119 | public float m_minPhys = 0.001f; | 119 | public float m_minPhys = 0.01f; |
120 | 120 | ||
121 | /// <summary> | 121 | /// <summary> |
122 | /// Maximum value of the size of a physical prim in each axis | 122 | /// Maximum value of the size of a physical prim in each axis |
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index cd90517..3ec4bab 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example | |||
@@ -87,9 +87,9 @@ | |||
87 | ;; from the selected region_info_source. | 87 | ;; from the selected region_info_source. |
88 | ; allow_regionless = false | 88 | ; allow_regionless = false |
89 | 89 | ||
90 | ;# {NonPhysicalPrimMin} {} {Minimum size of nonphysical prims?} {} 0.01 | 90 | ;# {NonPhysicalPrimMin} {} {Minimum size of nonphysical prims?} {} 0.001 |
91 | ;; Minimum size for non-physical prims. Affects resizing of existing prims. This can be overriden in the region config file (as NonPhysicalPrimMin!). | 91 | ;; Minimum size for non-physical prims. Affects resizing of existing prims. This can be overriden in the region config file (as NonPhysicalPrimMin!). |
92 | ; NonPhysicalPrimMin = 0.01 | 92 | ; NonPhysicalPrimMin = 0.001 |
93 | 93 | ||
94 | ;# {NonPhysicalPrimMax} {} {Maximum size of nonphysical prims?} {} 256 | 94 | ;# {NonPhysicalPrimMax} {} {Maximum size of nonphysical prims?} {} 256 |
95 | ;; Maximum size for non-physical prims. Affects resizing of existing prims. This can be overriden in the region config file (as NonPhysicalPrimMax!). | 95 | ;; Maximum size for non-physical prims. Affects resizing of existing prims. This can be overriden in the region config file (as NonPhysicalPrimMax!). |