mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
* Renamed and encapsulated m_sceneGraph as SceneGraph for ccc
This commit is contained in:
@@ -1116,13 +1116,13 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
scriptScore = 0;
|
||||
|
||||
scriptScore += (float)count;
|
||||
SceneGraph d = m_scene.m_sceneGraph;
|
||||
SceneGraph d = m_scene.SceneGraph;
|
||||
d.AddToScriptLPS(count);
|
||||
}
|
||||
|
||||
public void AddActiveScriptCount(int count)
|
||||
{
|
||||
SceneGraph d = m_scene.m_sceneGraph;
|
||||
SceneGraph d = m_scene.SceneGraph;
|
||||
d.AddActiveScripts(count);
|
||||
}
|
||||
|
||||
@@ -1858,7 +1858,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
{
|
||||
if (m_scene == null) // Need to check here as it's null during object creation
|
||||
return;
|
||||
m_scene.m_sceneGraph.AddToUpdateList(this);
|
||||
m_scene.SceneGraph.AddToUpdateList(this);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user