aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/OpenSim.ini.example
diff options
context:
space:
mode:
Diffstat (limited to 'bin/OpenSim.ini.example')
-rw-r--r--bin/OpenSim.ini.example34
1 files changed, 23 insertions, 11 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index 6757081..26eb8ed 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -206,12 +206,13 @@
206 ;; Choose one of the physics engines below 206 ;; Choose one of the physics engines below
207 ;# {physics} {} {Select physics engine} {OpenDynamicsEngine BulletSim basicphysics POS} OpenDynamicsEngine 207 ;# {physics} {} {Select physics engine} {OpenDynamicsEngine BulletSim basicphysics POS} OpenDynamicsEngine
208 ;; OpenDynamicsEngine is by some distance the most developed physics engine 208 ;; OpenDynamicsEngine is by some distance the most developed physics engine
209 ;; BulletSim is incomplete and experimental but in active development 209 ;; BulletSim is incomplete and experimental but in active development. BulletSimN is a purely C# version of BulletSim.
210 ;; basicphysics effectively does not model physics at all, making all 210 ;; basicphysics effectively does not model physics at all, making all
211 ;; objects phantom 211 ;; objects phantom.
212 ;; Default is OpenDynamicsEngine 212 ;; Default is OpenDynamicsEngine
213 ; physics = OpenDynamicsEngine 213 ; physics = OpenDynamicsEngine
214 ; physics = BulletSim 214 ; physics = BulletSim
215 ; physics = BulletSimN
215 ; physics = basicphysics 216 ; physics = basicphysics
216 ; physics = POS 217 ; physics = POS
217 218
@@ -744,13 +745,6 @@
744 ;; The trade-off may be increased memory usage by the script engine. 745 ;; The trade-off may be increased memory usage by the script engine.
745 ; ThreadStackSize = 262144 746 ; ThreadStackSize = 262144
746 747
747 ;# {DeleteScriptsOnStartup} {} {Delete previously compiled script DLLs on startup?} (true false) true
748 ;; Controls whether previously compiled scripts DLLs are deleted on sim restart. If you set this to false
749 ;; then startup will be considerably faster since scripts won't need to be recompiled. However, then it becomes your responsibility to delete the
750 ;; compiled scripts if you're recompiling OpenSim from source code and internal interfaces used
751 ;; by scripts have changed.
752 ; DeleteScriptsOnStartup = true
753
754 ;; Set this to true (the default) to load each script into a separate 748 ;; Set this to true (the default) to load each script into a separate
755 ;; AppDomain. 749 ;; AppDomain.
756 ;; 750 ;;
@@ -763,6 +757,23 @@
763 ;; Some Windows users have also reported script loading problems when AppDomainLoading = false 757 ;; Some Windows users have also reported script loading problems when AppDomainLoading = false
764 ; AppDomainLoading = true 758 ; AppDomainLoading = true
765 759
760 ;; Controls whether scripts are stopped by aborting their threads externally (abort) or by co-operative checks from the compiled script (co-op)
761 ;; co-op will be more stable but this option is currently experimental.
762 ;; If moving from co-op to abort, existing script DLLs will need to be recompiled.
763 ;; This currently can only be done manually, either by setting DeleteScriptsOnStartup = true for one run
764 ;; or by deleting the script DLL* files in bin/ScriptEngines/<region-id>/
765 ;; One can move from co-op back to abort without recompilation, but reverting back to co-op again will need script recompile
766 ;; Current valid values are "abort" and "co-op"
767 ; ScriptStopStrategy = abort
768
769
770 ;# {DeleteScriptsOnStartup} {} {Delete previously compiled script DLLs on startup?} (true false) true
771 ;; Controls whether previously compiled scripts DLLs are deleted on sim restart. If you set this to false
772 ;; then startup will be considerably faster since scripts won't need to be recompiled. However, then it becomes your responsibility to delete the
773 ;; compiled scripts if you're recompiling OpenSim from source code and internal interfaces used
774 ;; by scripts have changed.
775 ; DeleteScriptsOnStartup = true
776
766 ;# {DefaultCompileLanguage} {Enabled:true} {Default script language?} {lsl vb cs} lsl 777 ;# {DefaultCompileLanguage} {Enabled:true} {Default script language?} {lsl vb cs} lsl
767 ;; Default language for scripts 778 ;; Default language for scripts
768 ; DefaultCompileLanguage = "lsl" 779 ; DefaultCompileLanguage = "lsl"
@@ -786,8 +797,9 @@
786 ;; Allow the use of os* functions (some are dangerous) 797 ;; Allow the use of os* functions (some are dangerous)
787 ; AllowOSFunctions = false 798 ; AllowOSFunctions = false
788 799
789 ;# {AllowLightShareFunctions} {Enabled:true [LightShare]enable_windlight:true} {Allow LightShare functions?} {true false} true 800 ;# {AllowLightShareFunctions} {Enabled:false [LightShare]enable_windlight:true} {Allow LightShare functions?} {true false} false
790 ; Allow the user of LightShare functions 801 ; Allow the use of LightShare functions.
802 ; The setting enable_windlight = true must also be enabled in the [LightShare] section.
791 ; AllowLightShareFunctions = false 803 ; AllowLightShareFunctions = false
792 804
793 ;# {OSFunctionThreatLevel} {Enabled:true AllowOSFunctions:true} {OSFunction threat level? (DANGEROUS!)} {None VeryLow Low Moderate High VeryHigh Severe} VeryLow 805 ;# {OSFunctionThreatLevel} {Enabled:true AllowOSFunctions:true} {OSFunction threat level? (DANGEROUS!)} {None VeryLow Low Moderate High VeryHigh Severe} VeryLow