Files
libremetaverse/bin/Simian.ini
John Hurliman 808b681b83 * Fixed a nasty OSD->JSON bug that was producing invalid JSON for empty arrays or dictionaries
* Several fixes in OpenMetaverse.Http.CapsServer and OpenMetaverse.Http.EventQueueServer (this is the first time they've been tested)
[Simian]
* Initial capabilities and EventQueue support (appears to be working)
* HyperGrid is almost working
* More cleanup with how agents are removed from the scene

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2427 52acb1d6-8a22-11de-b505-999d5b087335
2009-02-04 23:00:33 +00:00

109 lines
3.2 KiB
INI

[Extensions]
; Handles sending and receiving packets in the LLUDP format
UDPManager
; LLUDP connection management. Allows agents to connect and disconnect from a
; simulator, as well as keeping the UDP connection alive.
ConnectionManagement
; Creates an account for anyone who logs in. The account will be registered
; with the account provider so persistence between sessions is possible, but
; no form of authentication or authorization is done
AuthFreeForAll
; Implements the login server for Linden-based clients directly into Simian
LindenLogin
;
; ---Local Simulator Stores---
;
; The following extensions use persistence, but do not communicate with a
; remote server or other simulators. These extensions are only useful for a
; single simulator running in standalone mode, and will have unexpected results
; if the simulator is part of a larger grid.
; A simulator-local account store
AccountManager
; A simulator-local asset store using the filesystem to store assets
AssetManager
; A simulator-local inventory store
InventoryManager
;
; ---End Local Simulator Stores---
;
; Manages creation and deletion of capabilities (see
; http://wiki.secondlife.com/wiki/Capabilities for more information).
CapsManager
; Various avatar-related functions including appearance, animations and sounds
AvatarManager
; Friendship management and alerts
FriendManager
; Chat and instant messaging
Messaging
; Money management and accounting functions
Money
; Texture downloads
ImageDelivery
; Other asset downloads
TransferManager
; A simple physics engine for avatar movement. Supports walking, flying, and
; swimming as well as avatar-avatar collisions. Does not support avatar-prim
; or prim-prim collisions.
Movement
; Object creation, editing, deleting, etc. Processes packets and passes events
; to the scene provider.
ObjectManager
; Parcel management
ParcelManager
; Converts prims into 3D geometry data. This is only used if a physics engine
; is present that makes use of prim mesh data.
RenderingPluginMesher
; Main scene graph engine. All spatial events are processed through here.
SceneManager
MapLocal
; Periscope allows you to proxy a foreign grid simulator into the local Simian
; using a libOpenMetaverse bot. The first person to login to Simian will become
; the master agent, who's movement is tethered to the bot's movement. Any other
; agents that login can move around freely, but will only see what the master
; agent is seeing through the periscope. If you enable this extension, disable
; ImageDelivery and Movement as Periscope has its own implementations of those
; extensions
;Periscope
;
; ---Persistence Providers---
;
; The following extensions allow extensions that use persistence to save
; state between simulator runs. Only one persistence provider should be
; active.
; Persistence provider using LLSD XML serialization
XMLPersistence
[Meshers]
; Meshing plugins are listed in order of preference. If the first plugin is not
; found the next is loaded, and so on. The items listed are used as search
; strings, so the exact dll name is not needed
OpenMetaverse.Rendering.GPL
OpenMetaverse.Rendering.Meshmerizer
OpenMetaverse.Rendering.Simple