OpenSim.Region.Framework.Scenes.Scene.CrossAgentToNewRegion C# (CSharp) Method

CrossAgentToNewRegion() public method

public CrossAgentToNewRegion ( ScenePresence agent, bool isFlying ) : void
agent ScenePresence
isFlying bool
return void
        public void CrossAgentToNewRegion(ScenePresence agent, bool isFlying)
        {
            if (m_teleportModule != null)
                m_teleportModule.Cross(agent, isFlying);
            else
            {
                m_log.DebugFormat("[SCENE]: Unable to cross agent to neighbouring region, because there is no AgentTransferModule");
            }
        }
Scene