aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/OpenSim.ini.example
diff options
context:
space:
mode:
authorKittoFlora2009-11-02 21:53:51 +0100
committerKittoFlora2009-11-02 21:53:51 +0100
commit2ec022cf133534bbed4ca5e73fdb1d5a5a40bb3a (patch)
treee44fc76f1cb7154ecbdfa6e36f961fdc5be311c3 /bin/OpenSim.ini.example
parentMerge branch 'master' into vehicles (diff)
parentRemoving Console.WriteLine()s that were brought in with the revert (diff)
downloadopensim-SC_OLD-2ec022cf133534bbed4ca5e73fdb1d5a5a40bb3a.zip
opensim-SC_OLD-2ec022cf133534bbed4ca5e73fdb1d5a5a40bb3a.tar.gz
opensim-SC_OLD-2ec022cf133534bbed4ca5e73fdb1d5a5a40bb3a.tar.bz2
opensim-SC_OLD-2ec022cf133534bbed4ca5e73fdb1d5a5a40bb3a.tar.xz
Merge branch 'master' into vehicles
Diffstat (limited to 'bin/OpenSim.ini.example')
-rw-r--r--bin/OpenSim.ini.example28
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