aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorUbitUmarov2018-02-02 13:04:45 +0000
committerUbitUmarov2018-02-02 13:04:45 +0000
commit20ca517887b6384811bdb63743beabee9c1c3e59 (patch)
tree3f8384842794cae03f8c3bbf253432682b6474f0
parent add experimental script engine XMRengine donated by mrieker (DreamNation) An... (diff)
downloadopensim-SC-20ca517887b6384811bdb63743beabee9c1c3e59.zip
opensim-SC-20ca517887b6384811bdb63743beabee9c1c3e59.tar.gz
opensim-SC-20ca517887b6384811bdb63743beabee9c1c3e59.tar.bz2
opensim-SC-20ca517887b6384811bdb63743beabee9c1c3e59.tar.xz
update opensim.ini.example with XMRengine information
Diffstat (limited to '')
-rw-r--r--bin/OpenSim.ini.example23
1 files changed, 21 insertions, 2 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index 3021dfa..5c9dab2 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -261,9 +261,13 @@
261 ; edit the line ulimit -s 262144, and change this last value 261 ; edit the line ulimit -s 262144, and change this last value
262 262
263 ;# {DefaultScriptEngine} {} {Default script engine} {XEngine} XEngine 263 ;# {DefaultScriptEngine} {} {Default script engine} {XEngine} XEngine
264 ;; Default script engine to use. Currently, we only have XEngine 264 ;; Default script engine to use (Xengine if all commented)
265 ; DefaultScriptEngine = "XEngine" 265 ; DefaultScriptEngine = "XEngine"
266 266 ;; ***DANGER***DANGER***
267 ;; experimental engine
268 ;; see section [XMREngine} below
269 ; DefaultScriptEngine = "XMREngine"
270
267 ;# {HttpProxy} {} {Proxy URL for llHTTPRequest and dynamic texture loading} {} http://proxy.com:8080 271 ;# {HttpProxy} {} {Proxy URL for llHTTPRequest and dynamic texture loading} {} http://proxy.com:8080
268 ;; Http proxy setting for llHTTPRequest and dynamic texture loading, if 272 ;; Http proxy setting for llHTTPRequest and dynamic texture loading, if
269 ;; required 273 ;; required
@@ -915,6 +919,21 @@
915 ;; Money Unit fee to create groups. Default is 0. 919 ;; Money Unit fee to create groups. Default is 0.
916 ; PriceGroupCreate = 0 920 ; PriceGroupCreate = 0
917 921
922[XMREngine]
923 ;; experimental engine
924 ;; implements microthreading, so fixing problems like llSleep or long events handlers
925 ;; but those will suffer from timeslicing, so will be slower.
926 ;; compiles LSL directly to IL, so only suports LSL scripting ( no C# etc)
927 ;; shares the Xengine APIs like LSL, OSSL, etc.
928 ;; DANGER, do not use with HG, don't leave regions running alone with it.
929 ;; TPs or crossings to/from Xengine will recompile scripts losing state.
930 ;; attachment scripts may misbehave, cars will stop on crossings, etc.
931 Enabled = false
932 UThreadModel = sys
933 ScriptStackSize = 256
934 ScriptHeapSize = 256
935 UseSourceHashCode = true
936 MinTimerInterval = 0.1
918 937
919[XEngine] 938[XEngine]
920 ;# {Enabled} {} {Enable the XEngine scripting engine?} {true false} true 939 ;# {Enabled} {} {Enable the XEngine scripting engine?} {true false} true