mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
* adds flag in OpenSim.ini for disabling physical prim. Look at OpenSim.ini.example in the bin folder for an example.
This commit is contained in:
@@ -44,8 +44,8 @@ namespace SimpleApp
|
||||
|
||||
public MyWorld(RegionInfo regionInfo, AgentCircuitManager authen, CommunicationsManager commsMan, SceneCommunicationService sceneGridService,
|
||||
AssetCache assetCach, StorageManager storeMan, BaseHttpServer httpServer,
|
||||
ModuleLoader moduleLoader)
|
||||
: base(regionInfo, authen, commsMan, sceneGridService, assetCach, storeMan, httpServer, moduleLoader, false)
|
||||
ModuleLoader moduleLoader, bool physicalPrim)
|
||||
: base(regionInfo, authen, commsMan, sceneGridService, assetCach, storeMan, httpServer, moduleLoader, false, true)
|
||||
{
|
||||
m_avatars = new List<Avatar>();
|
||||
}
|
||||
|
||||
@@ -172,7 +172,7 @@ namespace SimpleApp
|
||||
SceneCommunicationService sceneGridService = new SceneCommunicationService(m_commsManager);
|
||||
return
|
||||
new MyWorld(regionInfo, circuitManager, m_commsManager, sceneGridService, m_assetCache, storageManager, m_httpServer,
|
||||
new ModuleLoader(m_log, m_config));
|
||||
new ModuleLoader(m_log, m_config), true);
|
||||
}
|
||||
|
||||
protected override StorageManager CreateStorageManager(RegionInfo regionInfo)
|
||||
|
||||
Reference in New Issue
Block a user