Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.TeleportLandmarkRequestPacket$InfoBlock


  /// <returns>true on success, false on failure</returns>
  public boolean Teleport(UUID landmark) throws InterruptedException
  {
    teleportStat = TeleportStatus.None;
    teleportEvent.reset();
    TeleportLandmarkRequestPacket p = new TeleportLandmarkRequestPacket();
    p.Info = new TeleportLandmarkRequestPacket.InfoBlock();
    p.Info.AgentID = Client.self.getAgentID();
    p.Info.SessionID = Client.self.getSessionID();
    p.Info.LandmarkID = landmark;
    Client.network.SendPacket(p);
View Full Code Here


  /// Teleport agent to a landmark
  /// </summary>
  /// <param name="landmark"><seealso cref="UUID"/> of the landmark to teleport agent to</param>
  public void RequestTeleport(UUID landmark)
  {
    TeleportLandmarkRequestPacket p = new TeleportLandmarkRequestPacket();
    p.Info = new TeleportLandmarkRequestPacket.InfoBlock();
    p.Info.AgentID = Client.self.getAgentID();
    p.Info.SessionID = Client.self.getSessionID();
    p.Info.LandmarkID = landmark;
    Client.network.SendPacket(p);
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.TeleportLandmarkRequestPacket$InfoBlock

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.