mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
Merge commit '8bf0a9f85dda4b1831630b65620d5c6868196c11' into careminster
Conflicts: OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
This commit is contained in:
@@ -49,7 +49,7 @@ namespace OpenSim.Region.Physics.POSPlugin
|
||||
|
||||
public PhysicsScene GetScene(string sceneIdentifier)
|
||||
{
|
||||
return new POSScene(sceneIdentifier);
|
||||
return new POSScene(GetName(), sceneIdentifier);
|
||||
}
|
||||
|
||||
public string GetName()
|
||||
|
||||
@@ -43,8 +43,10 @@ namespace OpenSim.Region.Physics.POSPlugin
|
||||
|
||||
//protected internal string sceneIdentifier;
|
||||
|
||||
public POSScene(String _sceneIdentifier)
|
||||
public POSScene(string engineType, String _sceneIdentifier)
|
||||
{
|
||||
EngineType = engineType;
|
||||
Name = EngineType + "/" + _sceneIdentifier;
|
||||
//sceneIdentifier = _sceneIdentifier;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user