OpenMetaverse.AgentManager.Teleport C# (CSharp) Method

Teleport() public method

Teleport agent to another region
This call is blocking
public Teleport ( ulong regionHandle, System.Vector3 position ) : bool
regionHandle ulong handle of region to teleport agent to
position System.Vector3 position in destination sim to teleport to
return bool
        public bool Teleport(ulong regionHandle, Vector3 position)
        {
            return Teleport(regionHandle, position, new Vector3(0.0f, 1.0f, 0.0f));
        }

Same methods

AgentManager::Teleport ( UUID landmark ) : bool
AgentManager::Teleport ( string simName, System.Vector3 position ) : bool
AgentManager::Teleport ( string simName, System.Vector3 position, System.Vector3 lookAt ) : bool
AgentManager::Teleport ( ulong regionHandle, System.Vector3 position, System.Vector3 lookAt ) : bool