* refactor: as per a recent opensim-dev thread, rename InnerScene to SceneGraph to make it more descriptive of its intended function

This commit is contained in:
Justin Clarke Casey
2008-11-12 20:16:46 +00:00
parent 1ac613a948
commit cec112c87a
9 changed files with 119 additions and 107 deletions

View File

@@ -1051,13 +1051,13 @@ namespace OpenSim.Region.Environment.Scenes
scriptScore = 0;
scriptScore += (float)count;
InnerScene d = m_scene.m_innerScene;
SceneGraph d = m_scene.m_sceneGraph;
d.AddToScriptLPS(count);
}
public void AddActiveScriptCount(int count)
{
InnerScene d = m_scene.m_innerScene;
SceneGraph d = m_scene.m_sceneGraph;
d.AddActiveScripts(count);
}
@@ -1672,7 +1672,7 @@ namespace OpenSim.Region.Environment.Scenes
public void QueueForUpdateCheck()
{
m_scene.m_innerScene.AddToUpdateList(this);
m_scene.m_sceneGraph.AddToUpdateList(this);
}
/// <summary>