Fixed inverted map texture problem.

Added(from trunk) the loading of terrain files defined in the region.xml files.
This commit is contained in:
MW
2007-06-17 19:25:04 +00:00
parent ef494fdf9c
commit 99a308007c
28 changed files with 88 additions and 8 deletions

View File

@@ -39,13 +39,13 @@ namespace OpenSim.LocalCommunications
{
public class CommunicationsLocal : CommunicationsManager
{
public LocalBackEndServices SandManager = new LocalBackEndServices();
public LocalBackEndServices SandBoxManager = new LocalBackEndServices();
public CommunicationsLocal()
{
UserServer = null;
GridServer = SandManager;
InterRegion = SandManager;
GridServer = SandBoxManager;
InterRegion = SandBoxManager;
}
}
}