diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 6c9a8df..758a012 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -4296,7 +4296,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
4296 | /// <param name="cAgentData">Agent that contains all of the relevant things about an agent. | 4296 | /// <param name="cAgentData">Agent that contains all of the relevant things about an agent. |
4297 | /// Appearance, animations, position, etc.</param> | 4297 | /// Appearance, animations, position, etc.</param> |
4298 | /// <returns>true if we handled it.</returns> | 4298 | /// <returns>true if we handled it.</returns> |
4299 | public virtual bool IncomingChildAgentDataUpdate(AgentData cAgentData) | 4299 | public virtual bool IncomingUpdateChildAgent(AgentData cAgentData) |
4300 | { | 4300 | { |
4301 | m_log.DebugFormat( | 4301 | m_log.DebugFormat( |
4302 | "[SCENE]: Incoming child agent update for {0} in {1}", cAgentData.AgentID, RegionInfo.RegionName); | 4302 | "[SCENE]: Incoming child agent update for {0} in {1}", cAgentData.AgentID, RegionInfo.RegionName); |
@@ -4330,7 +4330,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
4330 | sp.UUID, sp.ControllingClient.SessionId, cAgentData.SessionID)); | 4330 | sp.UUID, sp.ControllingClient.SessionId, cAgentData.SessionID)); |
4331 | } | 4331 | } |
4332 | 4332 | ||
4333 | sp.ChildAgentDataUpdate(cAgentData); | 4333 | sp.UpdateChildAgent(cAgentData); |
4334 | 4334 | ||
4335 | int ntimes = 20; | 4335 | int ntimes = 20; |
4336 | if (cAgentData.SenderWantsToWaitForRoot) | 4336 | if (cAgentData.SenderWantsToWaitForRoot) |
@@ -4363,7 +4363,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
4363 | /// </summary> | 4363 | /// </summary> |
4364 | /// <param name="cAgentData">AgentPosition that contains agent positional data so we can know what to send</param> | 4364 | /// <param name="cAgentData">AgentPosition that contains agent positional data so we can know what to send</param> |
4365 | /// <returns>true if we handled it.</returns> | 4365 | /// <returns>true if we handled it.</returns> |
4366 | public virtual bool IncomingChildAgentDataUpdate(AgentPosition cAgentData) | 4366 | public virtual bool IncomingUpdateChildAgent(AgentPosition cAgentData) |
4367 | { | 4367 | { |
4368 | //m_log.Debug(" XXX Scene IncomingChildAgentDataUpdate POSITION in " + RegionInfo.RegionName); | 4368 | //m_log.Debug(" XXX Scene IncomingChildAgentDataUpdate POSITION in " + RegionInfo.RegionName); |
4369 | ScenePresence childAgentUpdate = GetScenePresence(cAgentData.AgentID); | 4369 | ScenePresence childAgentUpdate = GetScenePresence(cAgentData.AgentID); |
@@ -4383,7 +4383,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
4383 | uint tRegionX = RegionInfo.RegionLocX; | 4383 | uint tRegionX = RegionInfo.RegionLocX; |
4384 | uint tRegionY = RegionInfo.RegionLocY; | 4384 | uint tRegionY = RegionInfo.RegionLocY; |
4385 | //Send Data to ScenePresence | 4385 | //Send Data to ScenePresence |
4386 | childAgentUpdate.ChildAgentDataUpdate(cAgentData, tRegionX, tRegionY, rRegionX, rRegionY); | 4386 | childAgentUpdate.UpdateChildAgent(cAgentData, tRegionX, tRegionY, rRegionX, rRegionY); |
4387 | // Not Implemented: | 4387 | // Not Implemented: |
4388 | //TODO: Do we need to pass the message on to one of our neighbors? | 4388 | //TODO: Do we need to pass the message on to one of our neighbors? |
4389 | } | 4389 | } |