OpenSim.Region.Framework.Scenes.ScenePresence.CrossToNewRegion C# (CSharp) 메소드

CrossToNewRegion() 보호된 메소드

Moves the agent outside the region bounds Tells neighbor region that we're crossing to it If the neighbor accepts, remove the agent's viewable avatar from this scene set them to a child agent.
protected CrossToNewRegion ( ) : void
리턴 void
        protected void CrossToNewRegion()
        {
            InTransit();
            try
            {
                m_scene.CrossAgentToNewRegion(this, m_physicsActor.Flying);
            }
            catch
            {
                m_scene.CrossAgentToNewRegion(this, false);
            }
        }
ScenePresence