diff options
Diffstat (limited to '')
-rw-r--r-- | bin/OpenSim.ini.example | 28 |
1 files changed, 19 insertions, 9 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 927eb7a..6606270 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example | |||
@@ -42,7 +42,7 @@ | |||
42 | ; SmartThreadPool is reported to work well on Mono/Linux, but | 42 | ; SmartThreadPool is reported to work well on Mono/Linux, but |
43 | ; UnsafeQueueUserWorkItem has been benchmarked with better | 43 | ; UnsafeQueueUserWorkItem has been benchmarked with better |
44 | ; performance on .NET/Windows | 44 | ; performance on .NET/Windows |
45 | ;async_call_method = SmartThreadPool | 45 | async_call_method = SmartThreadPool |
46 | 46 | ||
47 | ; There are several operations on large collections (such as | 47 | ; There are several operations on large collections (such as |
48 | ; the current avatar list) that can be run synchronously or | 48 | ; the current avatar list) that can be run synchronously or |
@@ -148,7 +148,7 @@ | |||
148 | MaximumTimeBeforePersistenceConsidered = 600 | 148 | MaximumTimeBeforePersistenceConsidered = 600 |
149 | 149 | ||
150 | ; Should avatars in neighbor sims see objects in this sim? | 150 | ; Should avatars in neighbor sims see objects in this sim? |
151 | see_into_this_sim_from_neighbor = True | 151 | see_into_this_sim_from_neighbor = true |
152 | 152 | ||
153 | ; ## | 153 | ; ## |
154 | ; ## PHYSICS | 154 | ; ## PHYSICS |
@@ -399,13 +399,13 @@ | |||
399 | ; These are default values that will be overriden by clients | 399 | ; These are default values that will be overriden by clients |
400 | ; | 400 | ; |
401 | ;resend_default = 12500 | 401 | ;resend_default = 12500 |
402 | ;land_default = 500 | 402 | ;land_default = 1000 |
403 | ;wind_default = 500 | 403 | ;wind_default = 1000 |
404 | ;cloud_default = 50 | 404 | ;cloud_default = 1000 |
405 | ;task_default = 500 | 405 | ;task_default = 1000 |
406 | ;texture_default = 500 | 406 | ;texture_default = 1000 |
407 | ;asset_default = 500 | 407 | ;asset_default = 1000 |
408 | ;state_default = 500 | 408 | ;state_default = 1000 |
409 | 409 | ||
410 | ; Per-client maximum burst rates in bytes per second for the various | 410 | ; Per-client maximum burst rates in bytes per second for the various |
411 | ; throttle categories. These are default values that will be overriden by | 411 | ; throttle categories. These are default values that will be overriden by |
@@ -577,6 +577,9 @@ | |||
577 | ; used to control llMove2Target | 577 | ; used to control llMove2Target |
578 | body_pid_derivative = 35 | 578 | body_pid_derivative = 35 |
579 | body_pid_gain = 25 | 579 | body_pid_gain = 25 |
580 | |||
581 | ; maximum number of contact points to generate per collision | ||
582 | contacts_per_collision = 80 | ||
580 | 583 | ||
581 | ; amount of time a geom/body will try to cross a region border before it gets disabled | 584 | ; amount of time a geom/body will try to cross a region border before it gets disabled |
582 | geom_crossing_failures_before_outofbounds = 5 | 585 | geom_crossing_failures_before_outofbounds = 5 |
@@ -937,6 +940,13 @@ | |||
937 | 940 | ||
938 | ; Stack size per thread created | 941 | ; Stack size per thread created |
939 | ThreadStackSize = 262144 | 942 | ThreadStackSize = 262144 |
943 | |||
944 | ; Set this to true (the default) to load each script into a separate | ||
945 | ; AppDomain. Setting this to false will load all script assemblies into the | ||
946 | ; current AppDomain, which will reduce the per-script overhead at the | ||
947 | ; expense of reduced security and the inability to garbage collect the | ||
948 | ; script assemblies | ||
949 | AppDomainLoading = true | ||
940 | 950 | ||
941 | ; Rate to poll for asynchronous command replies (ms) | 951 | ; Rate to poll for asynchronous command replies (ms) |
942 | ; currently unused | 952 | ; currently unused |