mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 01:35:46 +08:00
* 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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user