mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 02:27:28 +08:00
* Changed ISimulation interface to take a GridRegion as input arg instead of a regionHandle.
* Added the RemoteSimulationConnectorModule, which is the replacement for RESTComms. Scenes is not using this yet, only (standalone) Login uses these region modules for now. * Completed SimulationServiceConnector and corresponding handlers.
This commit is contained in:
@@ -58,11 +58,10 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsIn.Simulation
|
||||
IConfig moduleConfig = config.Configs["Modules"];
|
||||
if (moduleConfig != null)
|
||||
{
|
||||
string name = moduleConfig.GetString("SimulationService", "");
|
||||
if (name == Name)
|
||||
m_Enabled = moduleConfig.GetBoolean("SimulationServiceInConnector", false);
|
||||
if (m_Enabled)
|
||||
{
|
||||
m_Enabled = true;
|
||||
m_log.Info("[SIM SERVICE]: SimulationService enabled");
|
||||
m_log.Info("[SIM SERVICE]: SimulationService IN connector enabled");
|
||||
|
||||
}
|
||||
}
|
||||
@@ -84,7 +83,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsIn.Simulation
|
||||
|
||||
public string Name
|
||||
{
|
||||
get { return "SimulationService"; }
|
||||
get { return "SimulationServiceInConnectorModule"; }
|
||||
}
|
||||
|
||||
public void AddRegion(Scene scene)
|
||||
|
||||
Reference in New Issue
Block a user