From fe6317f009cbdbe9b075c32584e1188cb59ddf94 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Tue, 19 Mar 2019 21:37:58 +0000 Subject: LSL update texture entry is heavy, set all parameters on same update --- bin/OpenSimDefaults.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/OpenSimDefaults.ini b/bin/OpenSimDefaults.ini index cede84d..20dbd2e 100644 --- a/bin/OpenSimDefaults.ini +++ b/bin/OpenSimDefaults.ini @@ -454,7 +454,7 @@ ; warp3D rendering height limits for prims (relative to rez position not bounding box) ; prims above RenderMaxHeight are excluded - ; valid values: 100 t0 4086 + ; valid values: 100 to 4086 ;RenderMaxHeight = 4086 ; prims below RenderMinHeight are excluded -- cgit v1.1 From b6626739e2b74dc0f66888ab9f383bd39a574945 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Sat, 23 Mar 2019 04:28:22 +0000 Subject: make the text enable option visible for testing --- bin/OpenSimDefaults.ini | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bin') diff --git a/bin/OpenSimDefaults.ini b/bin/OpenSimDefaults.ini index 20dbd2e..0b56163 100644 --- a/bin/OpenSimDefaults.ini +++ b/bin/OpenSimDefaults.ini @@ -776,6 +776,8 @@ ; ;PausedAckTimeout = 300 + ; experimental feature, things may still go very wrong + ; SupportViewerObjectsCache = false [ClientStack.LindenCaps] ;; Long list of capabilities taken from -- cgit v1.1 From 63321f9ccc1e35db8034da64c510f334e7d5e7d5 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Fri, 5 Apr 2019 04:08:14 +0100 Subject: add option RegionViewDistance --- bin/OpenSimDefaults.ini | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'bin') diff --git a/bin/OpenSimDefaults.ini b/bin/OpenSimDefaults.ini index 0b56163..9518aaf 100644 --- a/bin/OpenSimDefaults.ini +++ b/bin/OpenSimDefaults.ini @@ -164,15 +164,10 @@ ; limit the maximum view range ( no effect still (does limit MaxRegionsViewDistance) ) ;MaxDrawDistance = 512 - ; the maximum distance to tell a viewer to connect to a neighbour region, so it can be seen - ; (it is limited by MaxDrawDistance above) - ; less than 256 shows immediate neighbours; 256 to 511 also second imediate neighbours etc - ; more than 511m can cause viewers problems specially in case of dense regions. - ; curretly this distance is from current region borders. - ; Warning: if relevant regions have different setting you may notice strange - ; effects due to that asymmetry - ; ***** + ; Other regions visibilty depends on avatar position and view range + ; the view range considered is limited the maximum and minimum distances: ;MaxRegionsViewDistance = 255 + ;MinRegionsViewDistance = 96 ; If you have only one region in an instance, or to avoid the many bugs ; that you can trigger in modules by restarting a region, set this to -- cgit v1.1 From 7ce45235e61b1ee48a2b5208e5fdfb39a76ad96c Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Fri, 5 Apr 2019 11:19:38 +0100 Subject: make sure viewer knows where to place a sitting avatar, this will need deep revision with culling --- bin/OpenSimDefaults.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/OpenSimDefaults.ini b/bin/OpenSimDefaults.ini index 9518aaf..8696fe8 100644 --- a/bin/OpenSimDefaults.ini +++ b/bin/OpenSimDefaults.ini @@ -164,7 +164,7 @@ ; limit the maximum view range ( no effect still (does limit MaxRegionsViewDistance) ) ;MaxDrawDistance = 512 - ; Other regions visibilty depends on avatar position and view range + ; Other regions visibility depends on avatar position and view range ; the view range considered is limited the maximum and minimum distances: ;MaxRegionsViewDistance = 255 ;MinRegionsViewDistance = 96 -- cgit v1.1 From a25e18587c4f6757361f15b7e2ad844eade5b40f Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Sat, 6 Apr 2019 16:30:19 +0100 Subject: set SupportViewerObjectsCache true by default --- bin/OpenSimDefaults.ini | 29 +++++++---------------------- 1 file changed, 7 insertions(+), 22 deletions(-) (limited to 'bin') diff --git a/bin/OpenSimDefaults.ini b/bin/OpenSimDefaults.ini index 8696fe8..8582b94 100644 --- a/bin/OpenSimDefaults.ini +++ b/bin/OpenSimDefaults.ini @@ -685,23 +685,6 @@ [ClientStack.LindenUDP] - ; The client socket receive buffer size determines how many - ; incoming requests we can process; the default on .NET is 8192 - ; which is about 2 4k-sized UDP datagrams. On mono this is - ; whatever the underlying operating system has as default; for - ; example, ubuntu 8.04 or SLES11 have about 111k, which is about - ; 27 4k-sized UDP datagrams (on linux platforms you can [as root] - ; do "sysctl net.core.rmem_default" to find out what your system - ; uses a default socket receive buffer size. - ; - ; client_socket_rcvbuf_size allows you to specify the receive - ; buffer size LLUDPServer should use. NOTE: this will be limited - ; by the system's settings for the maximum client receive buffer - ; size (on linux systems you can set that with "sysctl -w - ; net.core.rmem_max=X") - ; - ;client_socket_rcvbuf_size = 8388608 - ; Maximum outbound bytes per second for a single scene. This can be used to ; throttle total outbound UDP traffic for a simulator. The default value is ; 0, meaning no throttling at the scene level. The example given here is @@ -726,8 +709,8 @@ ; Adaptive throttling attempts to limit network overload when multiple ; clients login by starting each connection more slowly. Disabled by ; default - ; - enable_adaptive_throttles = false + ; currently disabled + ;enable_adaptive_throttles = false ; Per-client bytes per second rates for the various throttle categories. ; These are default values that will be overridden by clients. These @@ -743,7 +726,7 @@ ;asset_default = 10500 ; TextureSendLimit determines how many packets will be put on - ; the outgoing queue each cycle. Like the settings above, this + ; the lludp outgoing queue each cycle. Like the settings above, this ; is a balance between responsiveness to priority updates and ; total throughput. Higher numbers will give a better ; throughput at the cost of reduced responsiveness to client @@ -771,8 +754,10 @@ ; ;PausedAckTimeout = 300 - ; experimental feature, things may still go very wrong - ; SupportViewerObjectsCache = false + ; Support viewers object cache, default true + ; users may need to reduce viewer bandwitdh if some prims or terrain parts fail to rez. + ; + ; SupportViewerObjectsCache = true [ClientStack.LindenCaps] ;; Long list of capabilities taken from -- cgit v1.1 From 442ef1cc9e5c7d2c9dce17ee525f6adb41cdc5ce Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Sat, 6 Apr 2019 21:27:54 +0100 Subject: change a comment --- bin/OpenSimDefaults.ini | 1 + 1 file changed, 1 insertion(+) (limited to 'bin') diff --git a/bin/OpenSimDefaults.ini b/bin/OpenSimDefaults.ini index 8582b94..456dcd6 100644 --- a/bin/OpenSimDefaults.ini +++ b/bin/OpenSimDefaults.ini @@ -756,6 +756,7 @@ ; Support viewers object cache, default true ; users may need to reduce viewer bandwitdh if some prims or terrain parts fail to rez. + ; change to false if you need to use old viewers that do not support this feature ; ; SupportViewerObjectsCache = true -- cgit v1.1 From 539a3a9273a2777f6a42d739e496da2b74b2efa7 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Sun, 7 Apr 2019 16:29:31 +0100 Subject: make robust ban by MAC options visible, thx Bill Blight --- bin/Robust.HG.ini.example | 4 ++++ bin/Robust.ini.example | 2 ++ 2 files changed, 6 insertions(+) (limited to 'bin') diff --git a/bin/Robust.HG.ini.example b/bin/Robust.HG.ini.example index 0f9bb4b..726e468 100644 --- a/bin/Robust.HG.ini.example +++ b/bin/Robust.HG.ini.example @@ -568,6 +568,8 @@ ;; ;; To turn off basic dos protection, set the DOSMaxRequestsInTimeFrame to 0. + ;; Allow banning via hashed MAC must be set in both [GatekeeperService] and [LoginService] + ;DeniedMacs = "YOURLONGMACTRSING ANOTHERMAC" [MapImageService] LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService" @@ -663,6 +665,8 @@ ;; Leave blank or commented for no exceptions. ; DisallowExcept = "http://myfriendgrid.com:8002, http://myboss.com:8002" + ;; Allow banning via hashed MAC must be set in both [GatekeeperService] and [LoginService] + ;DeniedMacs = "YOURLONGMACTRSING ANOTHERMAC" [UserAgentService] LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService" diff --git a/bin/Robust.ini.example b/bin/Robust.ini.example index 3222a94..50986de 100644 --- a/bin/Robust.ini.example +++ b/bin/Robust.ini.example @@ -495,6 +495,8 @@ ;; ;; To turn off basic dos protection, set the DOSMaxRequestsInTimeFrame to 0. + ;; Allow banning via hashed MAC + ;DeniedMacs = "YOURLONGMACTRSING ANOTHERMAC" [MapImageService] LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService" -- cgit v1.1 From b104934a258c34a77c0470b8495d9d286c82f4f5 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Mon, 8 Apr 2019 13:50:51 +0100 Subject: add osGetPSTWallclock() returns wall clock in PST or PDT, for those that for some odd reason think need it. OpenSim girds shoudl use UTC (gtm) but whatever --- bin/ScriptSyntax.xml | 47 ++++++++++++++++++++++++++--------------------- 1 file changed, 26 insertions(+), 21 deletions(-) (limited to 'bin') diff --git a/bin/ScriptSyntax.xml b/bin/ScriptSyntax.xml index 8f2f6002..989984a 100644 --- a/bin/ScriptSyntax.xml +++ b/bin/ScriptSyntax.xml @@ -1,4 +1,4 @@ -20392e48-fad2-094e-bc5b-cda003a1e940 +e796a21f-5a66-e4ec-833f-c4896b8e87e4 llsd-lsl-syntax-version2 controls @@ -6116,14 +6116,15 @@ arguments atypefloat btypefloat + margintypefloat osApproxEquals returninteger arguments - atypefloat - btypefloat + ratyperotation + rbtyperotation margintypefloat @@ -6148,17 +6149,16 @@ returninteger arguments - ratyperotation - rbtyperotation - margintypefloat + vatypevector + vbtypevector osApproxEquals returninteger arguments - vatypevector - vbtypevector + atypefloat + btypefloat osAvatarName2Key @@ -6284,6 +6284,8 @@ returnstring arguments drawListtypestring + startXtypeinteger + startYtypeinteger endXtypeinteger endYtypeinteger @@ -6293,8 +6295,6 @@ returnstring arguments drawListtypestring - startXtypeinteger - startYtypeinteger endXtypeinteger endYtypeinteger @@ -6433,13 +6433,13 @@ arguments avatartypestring - targettypestring osForceOtherSit arguments avatartypestring + targettypestring osFormatString @@ -6653,6 +6653,11 @@ rulestypelist + osGetPSTWallclock + + returnfloat + arguments + osGetRegionMapTexture returnkey @@ -6865,6 +6870,7 @@ nametypestring positiontypevector notecardtypestring + optionstypeinteger osNpcCreate @@ -6875,7 +6881,6 @@ nametypestring positiontypevector notecardtypestring - optionstypeinteger osNpcGetOwner @@ -7100,13 +7105,13 @@ osRegionNotice arguments - agentIDtypekey msgtypestring osRegionNotice arguments + agentIDtypekey msgtypestring @@ -7478,6 +7483,8 @@ arguments srctypestring valuetypestring + starttypeinteger + counttypeinteger ignorecasetypeinteger @@ -7487,8 +7494,6 @@ arguments srctypestring valuetypestring - starttypeinteger - counttypeinteger ignorecasetypeinteger @@ -7554,8 +7559,7 @@ arguments agenttypestring - regionXtypeinteger - regionYtypeinteger + regionNametypestring positiontypevector lookattypevector @@ -7564,6 +7568,8 @@ arguments agenttypestring + regionXtypeinteger + regionYtypeinteger positiontypevector lookattypevector @@ -7572,7 +7578,6 @@ arguments agenttypestring - regionNametypestring positiontypevector lookattypevector @@ -7590,6 +7595,7 @@ osTeleportOwner arguments + regionNametypestring positiontypevector lookattypevector @@ -7597,7 +7603,8 @@ osTeleportOwner arguments - regionNametypestring + regionXtypeinteger + regionYtypeinteger positiontypevector lookattypevector @@ -7605,8 +7612,6 @@ osTeleportOwner arguments - regionXtypeinteger - regionYtypeinteger positiontypevector lookattypevector -- cgit v1.1 From 2b604fa8894811a6ec4aaf70542c24d974026048 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Thu, 11 Apr 2019 23:44:18 +0100 Subject: update warp3d.dll --- bin/Warp3D.dll | Bin 75776 -> 76288 bytes 1 file changed, 0 insertions(+), 0 deletions(-) (limited to 'bin') diff --git a/bin/Warp3D.dll b/bin/Warp3D.dll index 523d67f..4eb3f77 100755 Binary files a/bin/Warp3D.dll and b/bin/Warp3D.dll differ -- cgit v1.1 From cfd39238684b64b66f2f469e803cef409d0dde6f Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Fri, 12 Apr 2019 00:19:42 +0100 Subject: update warp3d.dll --- bin/Warp3D.dll | Bin 76288 -> 76288 bytes 1 file changed, 0 insertions(+), 0 deletions(-) (limited to 'bin') diff --git a/bin/Warp3D.dll b/bin/Warp3D.dll index 4eb3f77..055b8bc 100755 Binary files a/bin/Warp3D.dll and b/bin/Warp3D.dll differ -- cgit v1.1 From 8994045d5fdfe2c9f61d3a6a92c8dbc97462db7a Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Tue, 23 Apr 2019 14:52:15 +0100 Subject: old typo --- bin/ScriptSyntax.xml | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) (limited to 'bin') diff --git a/bin/ScriptSyntax.xml b/bin/ScriptSyntax.xml index 989984a..d01414b 100644 --- a/bin/ScriptSyntax.xml +++ b/bin/ScriptSyntax.xml @@ -1,4 +1,4 @@ -e796a21f-5a66-e4ec-833f-c4896b8e87e4 +5b85f255-466f-238d-90ed-5726eaa2e67b llsd-lsl-syntax-version2 controls @@ -6754,15 +6754,15 @@ e796a21f-5a66-e4ec-833f-c4896b8e87e4 osKickAvatar arguments - FirstNametypestring - SurNametypestring + agentIdtypekey alerttypestring osKickAvatar arguments - agentIdtypekey + FirstNametypestring + SurNametypestring alerttypestring @@ -7351,6 +7351,7 @@ e796a21f-5a66-e4ec-833f-c4896b8e87e4 osSetProjectionParams arguments + primtypekey projectiontypeinteger texturetypekey fovtypefloat @@ -7361,7 +7362,17 @@ e796a21f-5a66-e4ec-833f-c4896b8e87e4 osSetProjectionParams arguments - primtypekey + projectiontypeinteger + texturetypekey + fovtypefloat + focustypefloat + ambtypefloat + + + osSetProjectionParams + + arguments + linknumbertypeinteger projectiontypeinteger texturetypekey fovtypefloat @@ -7595,7 +7606,8 @@ e796a21f-5a66-e4ec-833f-c4896b8e87e4 osTeleportOwner arguments - regionNametypestring + regionXtypeinteger + regionYtypeinteger positiontypevector lookattypevector @@ -7603,8 +7615,7 @@ e796a21f-5a66-e4ec-833f-c4896b8e87e4 osTeleportOwner arguments - regionXtypeinteger - regionYtypeinteger + regionNametypestring positiontypevector lookattypevector -- cgit v1.1 From 3a055c578d9fb2e1f6c0c9ba47a7b8c9c5d8af48 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Thu, 2 May 2019 03:11:16 +0100 Subject: soem cleanup --- bin/ScriptSyntax.xml | 104 +++++++++++++++++++++++++++++++++++---------------- 1 file changed, 72 insertions(+), 32 deletions(-) (limited to 'bin') diff --git a/bin/ScriptSyntax.xml b/bin/ScriptSyntax.xml index d01414b..2282ada 100644 --- a/bin/ScriptSyntax.xml +++ b/bin/ScriptSyntax.xml @@ -1,4 +1,4 @@ -5b85f255-466f-238d-90ed-5726eaa2e67b +24121ec8-c0a3-099d-8d83-64feaa32418c llsd-lsl-syntax-version2 controls @@ -1513,7 +1513,7 @@ OS_APIVERSION typeinteger - value3 + value4 OS_ATTACH_MSG_ALL typeinteger @@ -1539,6 +1539,36 @@ typeinteger value0x1 + OS_LTPAG_ALGNLV + typeinteger + value0x4 + tooltiposLocalTeleportAgent align lookat to velocity + + OS_LTPAG_FORCEFLY + typeinteger + value0x8 + tooltiposLocalTeleportAgent force fly + + OS_LTPAG_FORCENOFLY + typeinteger + value0x16 + tooltiposLocalTeleportAgent force no fly + + OS_LTPAG_NONE + typeinteger + value0x0 + tooltiposLocalTeleportAgent no flags + + OS_LTPAG_USELOOKAT + typeinteger + value0x2 + tooltiposLocalTeleportAgent use lookat + + OS_LTPAG_USEVEL + typeinteger + value0x1 + tooltiposLocalTeleportAgent use velocity + OS_NPC_CREATOR_OWNED typeinteger value0x1 @@ -6116,49 +6146,49 @@ arguments atypefloat btypefloat - margintypefloat osApproxEquals returninteger arguments - ratyperotation - rbtyperotation - margintypefloat + vatypevector + vbtypevector osApproxEquals returninteger arguments - ratyperotation - rbtyperotation + atypefloat + btypefloat + margintypefloat osApproxEquals returninteger arguments - vatypevector - vbtypevector - margintypefloat + ratyperotation + rbtyperotation osApproxEquals returninteger arguments - vatypevector - vbtypevector + ratyperotation + rbtyperotation + margintypefloat osApproxEquals returninteger arguments - atypefloat - btypefloat + vatypevector + vbtypevector + margintypefloat osAvatarName2Key @@ -6284,8 +6314,6 @@ returnstring arguments drawListtypestring - startXtypeinteger - startYtypeinteger endXtypeinteger endYtypeinteger @@ -6295,6 +6323,8 @@ returnstring arguments drawListtypestring + startXtypeinteger + startYtypeinteger endXtypeinteger endYtypeinteger @@ -6433,13 +6463,13 @@ arguments avatartypestring + targettypestring osForceOtherSit arguments avatartypestring - targettypestring osFormatString @@ -6754,15 +6784,15 @@ osKickAvatar arguments - agentIdtypekey + FirstNametypestring + SurNametypestring alerttypestring osKickAvatar arguments - FirstNametypestring - SurNametypestring + agentIdtypekey alerttypestring @@ -6781,6 +6811,16 @@ returnstring arguments + osLocalTeleportAgent + + arguments + agenttypekey + positiontypevector + velocitytypevector + lookattypevector + flagstypeinteger + + osLoopSound arguments @@ -7105,13 +7145,13 @@ osRegionNotice arguments + agentIDtypekey msgtypestring osRegionNotice arguments - agentIDtypekey msgtypestring @@ -7351,7 +7391,6 @@ osSetProjectionParams arguments - primtypekey projectiontypeinteger texturetypekey fovtypefloat @@ -7362,6 +7401,7 @@ osSetProjectionParams arguments + linknumbertypeinteger projectiontypeinteger texturetypekey fovtypefloat @@ -7372,7 +7412,7 @@ osSetProjectionParams arguments - linknumbertypeinteger + primtypekey projectiontypeinteger texturetypekey fovtypefloat @@ -7494,8 +7534,6 @@ arguments srctypestring valuetypestring - starttypeinteger - counttypeinteger ignorecasetypeinteger @@ -7505,6 +7543,8 @@ arguments srctypestring valuetypestring + starttypeinteger + counttypeinteger ignorecasetypeinteger @@ -7541,6 +7581,7 @@ arguments srctypestring starttypeinteger + lengthtypeinteger osStringSubString @@ -7549,7 +7590,6 @@ arguments srctypestring starttypeinteger - lengthtypeinteger osSunGetParam @@ -7579,8 +7619,6 @@ arguments agenttypestring - regionXtypeinteger - regionYtypeinteger positiontypevector lookattypevector @@ -7589,6 +7627,8 @@ arguments agenttypestring + regionXtypeinteger + regionYtypeinteger positiontypevector lookattypevector @@ -7606,8 +7646,6 @@ osTeleportOwner arguments - regionXtypeinteger - regionYtypeinteger positiontypevector lookattypevector @@ -7615,7 +7653,8 @@ osTeleportOwner arguments - regionNametypestring + regionXtypeinteger + regionYtypeinteger positiontypevector lookattypevector @@ -7623,6 +7662,7 @@ osTeleportOwner arguments + regionNametypestring positiontypevector lookattypevector -- cgit v1.1 From 9c44dc3384cdc13bc11d6cff8e700e338c564d99 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Sun, 19 May 2019 14:20:01 +0100 Subject: change yengine comments on ini file --- bin/OpenSim.ini.example | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'bin') diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 8b77ee9..7db7506 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example @@ -927,14 +927,10 @@ [YEngine] ;; experimental engine - ;; ONLY SUPORTS ONE REGION PER INSTANCE at this point ;; implements non preemptive microthreading, so fixing problems like llSleep or long events handlers ;; but those will suffer from timeslicing, so will be slower. - ;; compiles LSL directly to IL, so only suports LSL scripting (no C# etc) - ;; shares the Xengine APIs like LSL, OSSL, etc. - ;; DANGER, do not use with HG, don't leave regions running alone with it. - ;; TPs or crossings to/from Xengine will full recompile scripts losing state. - ;; attachment scripts may misbehave, cars will stop on crossings, etc. + ;; warning: scripts state is lost on TP or cross to Xengine regions (cars stop, etc) + ;; ignore its extensions (subset of original XMRengine), those are still undefined. Enabled = false ScriptStackSize = 256 ScriptHeapSize = 256 -- cgit v1.1 From 38e937f91b08a2e52c47d2353c57556f542a00c1 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Tue, 28 May 2019 21:37:59 +0100 Subject: add sim feature AvatarHoverHeightEnabled; mantis 8535: make option MeshModelAllowTextureToInventory visible --- bin/OpenSimDefaults.ini | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'bin') diff --git a/bin/OpenSimDefaults.ini b/bin/OpenSimDefaults.ini index 456dcd6..1332ce8 100644 --- a/bin/OpenSimDefaults.ini +++ b/bin/OpenSimDefaults.ini @@ -1712,17 +1712,12 @@ [Economy] ; the economy module in use ; default is the provided BetaGridLikeMoneyModule - ; - This module is for demonstration only - ; The default economy module only implements just enough to allow free actions (transfer of objects, etc). ; There is no intention to implement anything further in core OpenSimulator. ; This functionality has to be provided by third party modules. - ; To use other modules you need to override this setting on OpenSim.ini Economy (or startup) section ; economymodule = BetaGridLikeMoneyModule - ; These economy values get used in the BetaGridLikeMoneyModule. - This module is for demonstration only - - ; The default economy module only implements just enough to allow free actions (transfer of objects, etc). - ; There is no intention to implement anything further in core OpenSimulator. - ; This functionality has to be provided by third party modules. + ; Economy values get used in the BetaGridLikeMoneyModule. ;; Enables selling things for $0. Default is true. ; SellEnabled = true @@ -1750,6 +1745,14 @@ ;PriceObjectRent = 0 ;PriceObjectScaleFactor = 10 ;PriceParcelRent = 0 + + ; Mesh upload settings, independent of economymodule + + ; Create inventory entries for textures uploaded with a model + ; default is false, ie, do not create + ; MeshModelAllowTextureToInventory = true + + [XEngine] ; Enable this engine in this OpenSim instance -- cgit v1.1