diff options
author | UbitUmarov | 2016-01-26 20:52:09 +0000 |
---|---|---|
committer | UbitUmarov | 2016-01-26 20:52:09 +0000 |
commit | 8981cba137e6eea28f7a1e8f60e21ae8cad1b67b (patch) | |
tree | d664b69f41db0411ed60811e50393f6851feb18c | |
parent | add option MaxRegionsViewDistance to control the maximum range to tell viewe... (diff) | |
download | opensim-SC_OLD-8981cba137e6eea28f7a1e8f60e21ae8cad1b67b.zip opensim-SC_OLD-8981cba137e6eea28f7a1e8f60e21ae8cad1b67b.tar.gz opensim-SC_OLD-8981cba137e6eea28f7a1e8f60e21ae8cad1b67b.tar.bz2 opensim-SC_OLD-8981cba137e6eea28f7a1e8f60e21ae8cad1b67b.tar.xz |
update OpenSimDefaults.ini
-rw-r--r-- | bin/OpenSimDefaults.ini | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/bin/OpenSimDefaults.ini b/bin/OpenSimDefaults.ini index 84e029b..725ce57 100644 --- a/bin/OpenSimDefaults.ini +++ b/bin/OpenSimDefaults.ini | |||
@@ -161,13 +161,19 @@ | |||
161 | ; Warning! Don't use this with regions that have existing content!, This will likely break them | 161 | ; Warning! Don't use this with regions that have existing content!, This will likely break them |
162 | CombineContiguousRegions = false | 162 | CombineContiguousRegions = false |
163 | 163 | ||
164 | ; Extend the region's draw distance; 255m is the default which includes | 164 | ; the default view range. Viewers override this ( no major effect still ) |
165 | ; one neighbor on each side of the current region, 767m would go three | ||
166 | ; neighbors on each side for a total of 49 regions in view. Warning, unless | ||
167 | ; all the regions have the same drawdistance, you will end up with strange | ||
168 | ; effects because the agents that get closed may be inconsistent. | ||
169 | DefaultDrawDistance = 255.0 | 165 | DefaultDrawDistance = 255.0 |
170 | 166 | ||
167 | ; limit the maximum view range ( no effect still (does limit MaxRegionsViewDistance) ) | ||
168 | MaxDrawDistance = 512 | ||
169 | |||
170 | ; the maximum distance to tell a viewer to connect to a neighbour region, so it can be seen | ||
171 | ; (it is limited by MaxDrawDistance above) | ||
172 | ; less than 256 shows imediate neighbours; 512 also second imediate neighbours etc | ||
173 | ; more than 512m can cause viewers problems specially in case of dense regions. | ||
174 | ; curretly this distance is from current region borders. | ||
175 | MaxRegionsViewDistance = 255 | ||
176 | |||
171 | ; If you have only one region in an instance, or to avoid the many bugs | 177 | ; If you have only one region in an instance, or to avoid the many bugs |
172 | ; that you can trigger in modules by restarting a region, set this to | 178 | ; that you can trigger in modules by restarting a region, set this to |
173 | ; true to make the entire instance exit instead of restarting the region. | 179 | ; true to make the entire instance exit instead of restarting the region. |